View Single Post
  #4  
Old 09-05-2008, 09:58 AM
  pig@pp's Avatar 
pig@pp pig@pp is offline
 

Advanced Member
  
Join Date: Mar 2006
Location: San Luis Obispo, CA
Posts: 38
 

Default Re: Detailed Images greater than 1 conditional

The following worked for us in v4.1.9

add to modules/Detailed_Product_Images/product_images.php

#
# Count Detail Images
#
$image_check = func_query_first_cell("SELECT count(imageid) FROM xcart_images_D WHERE id='$productid'");
$smarty->assign('image_check', $image_check);


Usage:

{if $image_check >= "X"}
something to show here
{else}
something else to show here
{/if}
__________________
http://www.polyperformance.com/
4.1.9 Gold (x7)
Hosting by EWDHosting.com
Reply With Quote