You can override this with the templates and overrides by copying the file:
/includes/templates/templates_default/tpl_products_info_default.php
to your overrides directory:
/includes/templates/your_template_dir/tpl_products_info_default.php
And commenting out the Always Free Shipping image:
PHP Code:
<!--bof free ship icon -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current)) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
To not lose the code should you want it back, you can alter it to read:
PHP Code:
<!--bof free ship icon -->
<?php if(false && zen_get_product_is_always_free_shipping($products_id_current)) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
The false && is what turns it off ... as this can never be true ...
NOTE: Gift Certificates should not be marked as Always Free Shipping ... they should be marked as:
Always Free Shipping: No, Normal Shipping Rules
Product is Virtual: Yes, Skip Shipping Address