Solved it
i Changed This:
<!--bof free ship icon -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
To This
<!--bof free ship icon -->
<?php if(zen_products_lookup((int)$_GET['products_id'], 'products_price') >= 200 && ($product_weight) <=20 && (($manufacturers_name) != SFIFloors && ($manufacturers_name) != MegatradeCorporation) || zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
and now it adds a: This item ships free over XX Image on all products under $199 and under a weight of 20Lbs and excludes two manufacturers.
i then replicated same code but Went 200.00 and up and shows a this item ships Free image


Reply With Quote
