Is there a way to show multiple images of a product on product description page in netsuite.
Or, is there a short tag available to use in category template to show more images of product?
In one of my project we had to implement the same scenario, but Netsuite doesn't have such built in capability. There is only one display image option for each item. One of our client wanted to have multiple images of the product on the webstore. We just figured out some alternative by uploading all our images to Amazon S3 and integrate to our website. It worked for us.
Related
I am using Orchard 1.8.1 and one of the sections of the site I'm building is for a standard photo gallery. Since all the modules involving photo galleries are ancient, I opted to stay native and try using custom content types to build it instead. The way I accomplished this is with a Photo Gallery content type that has the Container part associated, then a Photo Gallery Item content type that has the Containable part associated to it.
Using the Shape Tracing tool, I was able to build out the main gallery page that shows all the individual galleries, but when you go inside a single gallery is where I get lost. The attached screenshot probably shows it best, but in the Content zone, I can see there are two individual items contained under Model.ContentItem.ContainerPart.ItemCount, however I can't figure out how to access those individual items to build a template to show them. The point of the gallery page will be implementing the gallery from Galleria, so whenever I view the individual page for the Photo Gallery content type, I need to access all child items underneath it to build this.
Any ideas?
You can use a media library picker field configured for multiple media, and then edit each image to set its caption and title. Then, it's just a matter of customizing a template override in your theme to make it look exactly the way you want.
I am building a Student Registration form using Orchard.CustomForms module.
I have got most of the fields working except for Student Image.
I tried using Orchard.Module.Contrib.ImageField & Orchard.Module.Contrib.MediaPickerField modules but don't see this in the list of fields.
The same goes for other attachments (pdf, word). Is there any module working with Orchard 1.7 ?
Those were not designed to upload files from the front-end. You'll have to build your own, or find another one on the gallery, if there is one.
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 want to implement video and image gallery for every user in drupal website.
I am using drupal 6, and requirement is any user can create Image or video to their own gallery after loged in.
How can i go to this. Please give me Idea or link where step by step process is given. If any module is there ?
How about using CCK and it's Image Field and Embedded Media Field to create content types for image entries and video entries.
You can then use Views to create a paginated, filterable list of nodes restricted to only image or video content types that were created by the current user.
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.