You can turn off the Free Shipping icon for the listings in the Catalog ... Product Type ... EDIT LAYOUT
Product Free Shipping Image Status - Catalog
Show the Free Shipping image/text in the catalog?
But this will turn it OFF on the product _info page as well ...
However, you can customize the code that would display it on the template file with your templates and overrides for the tpl_product_info_display.php
Code:
<!--bof free ship icon -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<?php
$chk_product_is_always_free_shipping = '<br>' . (zen_products_lookup($products_id_current, 'product_is_always_free_shipping_cad') ==0 ? 'US/CAD' : 'US ONLY');
?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON . $chk_product_is_always_free_shipping; ?></div>
<?php } ?>
<!--eof free ship icon -->
and change that to still show it ...