Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Show Free Shipping In Product_info.php


jay2k5

Recommended Posts

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:

Link to comment
Share on other sites

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');
}

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...