jay2k5 Posted June 14, 2007 Share Posted June 14, 2007 Ok My scripting skills are not great but what I'm trying to do is : when the product cost is over say £149.99 a banner shows showing free shipping available. I assume it would have to be something like <? if ($Product_price > 149.99;) tep_image(DIR_WS_IMAGES . $image, FREE_SHIPPING); }else{ tep_draw_separator('pixel_trans.gif',); ?> Anyone with scripting skills help me? Thanks in Advance :thumbsup: Quote Link to comment Share on other sites More sharing options...
Guest Posted June 14, 2007 Share Posted June 14, 2007 try if($product_info['products_price'] > 149.99) { echo tep_image(DIR_WS_IMAGES . $image, FREE_SHIPPING); }else{ echo tep_draw_separator('pixel_trans.gif', '100%', '10'); } Quote Link to comment Share on other sites More sharing options...
jay2k5 Posted June 15, 2007 Author Share Posted June 15, 2007 you are a star thank you so much :D Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.