Thumbnails in List on Combo Page

3 posts by 2 authors in: Forums > CMS Builder
Last Post: August 2, 2012   (RSS)

Re: [SkidderChains] Thumbnails in List on Combo Page

By Jason - August 1, 2012

Hi,

Your thumbnail code is correct. The issue here is with the index "image". The one thing I noticed is that in your foreach loop you use $listRecords, but when outputting your link, you use $listRecord.

My guess is that you need to change your foreach loop to remove the "s"

ie

<?php foreach ($listRecord['image'] as $index => $upload): ?>

Hope this helps.
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Jason] Thumbnails in List on Combo Page

By SkidderChains - August 2, 2012

Always something simple.....thank you.