View Single Post
  #374  
Old 04-12-2005, 10:03 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Try changing this:

Code:
# elseif($mode=="checkout" && !func_is_cart_empty($cart)) { include $xcart_dir."/modules/ezRecommends/ezrecommends.php"; $smarty->assign("main","ezrecommends"); } # # End Upselling Module #

to:

Code:
# elseif(($mode=="checkout") && (!func_is_cart_empty($cart)) && ($giftcertapplied != "Y")) { include $xcart_dir."/modules/ezRecommends/ezrecommends.php"; $smarty->assign("main","ezrecommends"); } # # End Upselling Module #
Reply With Quote