View Single Post
  #3  
Old 01-05-2006, 11:33 AM
 
phil_ phil_ is offline
 

Advanced Member
  
Join Date: Feb 2003
Location: Northern Ireland
Posts: 56
 

Default

I ended up placing a ticket with support. Actually its rather simple to do using the following snippet.

{$images[array_element_number].image_x}
{$images[array_element_number].image_y}

So if you wanted to acces the first detailed image's width and height, you would use;

{$images[0].image_x} and {$images[0].image_x}


and if you wanted to refer to all the stored images for a product, you could use the following section definition to loop through them.

{section name=image loop=$images}
{$images[image].image_x}
{$images[image].image_y}
{/section}


Hope someone else finds the info useful.

Philip
__________________
-----------------------------------------
X-Cart5 v5.2.16 (Live)
-----------------------------------------
Reply With Quote