I have this in my tpl_product_info_display.php file and want it to show on the product listing page
Code:
<!--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 -->
<!--bof free ship over 100 icon -->
<?php if(zen_products_lookup((int)$_GET['products_id'], 'products_price') >= 100 && ($products_weight) <=25 && !in_array($products_model, explode(',', FREE_SHIP_ICON_MFRS_EX3)) && !in_array($manufacturers_name, explode(',', FREE_SHIP_ICON_MFRS_EX))) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship over 100 icon -->
<!--bof free ship under 200 icon -->
<?php if(zen_products_lookup((int)$_GET['products_id'], 'products_price') <= 99 && ($products_weight) <=25 && !in_array($products_model, explode(',', FREE_SHIP_ICON_MFRS_EX3)) && in_array($manufacturers_name, explode(',', FREE_SHIP_ICON_MFRS_IN)) && ($products_discount_type) <= 0) { ?>
<div id="freeShippingunder"><?php echo TEXT_PRODUCT_FREE_SHIPPING_UNDER; ?></div>
<?php } ?>
<!--eof free ship under 200 icon -->
<!--bof free ship Friday's icon -->
<?php if(in_array($manufacturers_name, explode(',', FREE_SHIP_ICON_MFRS_IN2))) { ?>
<div id="freeShippingfriday"><?php echo TEXT_PRODUCT_FREE_SHIPPING_FRIDAY; ?></div>
<!--<span style="font-size:16px;"><u>"Certain Restrictions Apply"</u></span>-->
<?php } ?>
<!--eof free ship Friday's icon -->
<!--bof bulk buy icon -->
<?php if ($products_discount_type > 0) { ?>
<div id="bulkbuy"><?php echo TEXT_PRODUCT_BULK_BUY; ?></div>
<?php } ?>
<!--eof bulk buy icon -->
<hr id="product-divider" />