I'm building a site and would like that in this site I show some images which are in a specific folder in another site.
Any idea if that is possible and how it can be done. I know that with Highlighted Content I can show documents in different site but I do not have an idea how can I filter to a specific folder.
The images are found in this file path
Would you kindly help me out on this?
Thanks in advance
As a workaround, you could use image web part to show image from another site:
Besides, for Highlighted Content Web Part, you could add filter to show documents in a specific folder. Like the below:
Related
I have some custom codes in form of HTML which I wanted to add to the SharePoint. I find out there are two ways to do it, one is using the SharePoint Designer and the other one is uploading the page. However, this is local SharePoint in my Windows Server and I want to modify the page locally because I have limitation when using the Designer and Upload page. I also don't want to add a new page and I would like to modify the current page using my own code.
Are you able to help me out?
Edit the page> insert the Embed Code web part to add custom HTML codes:
More information for your reference:
https://www.c-sharpcorner.com/blogs/how-to-add-html-page-to-sharepoint-site
I am quite new in sharepoint, I am trying to figure out how to create and rename the site content.
The one in bold on the left of the sharepoint. it is not the subfolder, but the main one in the view all set content section.
Is there anybody have the simlar problems and are able to troubleshoot it?
Site Content section is a page of Sharepoint.It shows all the content in the site collection. If you want to build the same as Site Content. You should create a web part that getting all the content(document libraries, lists ...or anything you want to show). Once you have your web part. You can create a new page and insert this web part to this page. You can set the name and the content as you expected.
I am trying to build a website using Orchard CMS. The site has a product listing page where it has to show multiple product images. I would like to make a content type with Image Gallery to pick up multiple images for the product (has to show thumbnails too). Would this be possible? Can somebody direct me to the right documentation? The documentation on the Image Gallery codeplex site is not really well explained to my knowledge. Any help on this is greatly appreciated.
Try to use ImageMultipicker Field from Amba.ImagePowerTools module.
It allows to pickup muliple images and has http://imageresizing.net/ library for resizing under the hood.
https://imagepowertools.codeplex.com
https://gallery.orchardproject.net/List/Modules/Orchard.Module.Amba.ImagePowerTools/1.2
You need to create a list for Products first. You can add Image Gallery widget to your list as a part.
Check this link for more information:
http://docs.orchardproject.net/Documentation/Creating-lists
This seems to be just what you're lookinghttp://weblogs.asp.net/bleroy/archive/2012/03/30/zengallery-a-minimalist-image-gallery-for-orchard.aspx for:
I was wondering if someone has had a similar requirement before. What they want is a link that on the main site that would point to a different document contained within a document library every week. So week one it would be "document1.pdf" and week two it would be "document2.pdf" and so on. Is this possible for the navigation that is contained in the left hand side of a sharepoint site? Can a link be tied to a lookup? Any help would be appreciated!
You can create some redirect javascript within the Content Editor webpart. host it on a page and add a link to the page on the navigation.
This is by far the fastest way to get what you want.
Make sure to follow the advice here to be able to edit the page once you set the redirect.
Background
My task is to, in SharePoint, show an image of a process map which should be clickable. Think of an imagemap in html. Some areas take you to other process map images and other brings up a pop-up window.
"Connected" to each process map is a set of documents. These documents are stored in a document library. There are one process map for each folder in the document library. The documents should be shown next to the image. The person clicking either the image or a folder to navigate in the hierarchy should also be able to upload, download and delete the documents.
Question
What would be the easiest solution for this?
My thoughts
... so far is to create a custom web part which I add above the document library browser (the default one in MOSS 2007). This web part reads some xml file pointing out the image to show and the areas which is to be clickable. It listens for some kind of events from the document library, like clicks on folders in the browser or it reads the current URL to know where in the folder hierarchy we are currently, and from that show the correct process map image. When the image is clicked, the web part updates the image and tells the document library to update accordingly.
Is this feasible? Am I on the wrong track? How do I communicate with a document library?
Thanks, Martin
My thoughts are that you create a web part that displays your image map and outputs(provider) the appropriate criteria to a another web part that consumes it and displays the files in a document library.
You can achieve this by creating your own custom webpart that displays a document library based on a CAML query. Each Images sends a different CAML query to the document library webpart.
I hope this helps. Please provide information on how you solved this problem if you have already done so.
Thanks
Long since I've been here... Actually solved this one.
We created two web parts, one for process navigation and one for filtering documents in the document library.
The web part for process navigation is actually just a web part that looks for a specific query parameter in the URL and adds ".html" to it. Then looks for that document in a document library. If found then this document is shown inside an iframe. Simple!
The html documents are produced by Visio and exported to html, then uploaded to SharePoint. The links in the Visio document drives the application with queries.
The web part that shows the corresponding documents also looks for a specific query in the URL then sends filterparameters to the document library through the IfilterProvider interface. I snatched this example IFilterProvider at MSDN and made it look in the URL for parameters and then made the controls invisible to the user.
Really simple solution, though the customer needs to put in a lot of work to incorporate their company processes into it. And it is somewhat error prone and probably a sucker to make changes to data-wise.