Creating a Product page like in Listings Manager using CMS

5 posts by 2 authors in: Forums > CMS Builder
Last Post: May 22, 2008   (RSS)

By miked - May 22, 2008

Hello, I have integrated the CMS builder for my new client and all is working well! One last item, I would like to have their Product Pages look and work like Listings Manager has their pages look. Example: here is where we used Listings Manager for one of my other clients:

http://scandinavianinteriors.net/living.shtml

My client likes how the products are all thumbnails w/ brief descriptions and then by "clicking" on the item more details and photos appear in a new window.

Can I create a product page like this using CMS Builder too?

Re: [Dave] Creating a Product page like in Listings Manager using CMS

By miked - May 22, 2008

Thanks, that helped. How about being able to click on the image and have a larger pic pop up? I see where it says thumbnails and larger images when setting up the products but I must be doing something wrong as it's not showing a thumbnail and then a larger image on the site.

Re: [miked] Creating a Product page like in Listings Manager using CMS

By Dave - May 22, 2008

With the image code that is generated you'll see a tag in the src of the large image. Just copy that tag into an a href around the thumbnail image. Like this:

<a href="<?php echo $upload['urlPath'] ?>"><img src="<?php echo $upload['thumbUrlPath'] ?>" ... ></a>

Hope that helps!
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] Creating a Product page like in Listings Manager using CMS

By miked - May 22, 2008

Perfect! Thanks again!!