This easy mod will show a "Free Shipping" image at product details page when free shipping is selected from the product management screen in the admin.
Difficulty: Easy
Time: 10 minutes
1. Create a free shipping image and place it in your skin1/images folder
2. Decide where in your <table> you want to image to show up and edit your skin1/customer/main/product.tpl file as follows:
Code:
{if $product.free_shipping eq "Y"}
[img]{$ImagesDir}/free_shipping.gif[/img]
{/if}
Thats it, this is a versatile mod, you can use it on other pages as well!
Thanks to TJ Stephens for some code!