Quote Originally Posted by BlessIsaacola View Post
  1. tpl_product_free_shipping_info_display.php
  2. tpl_product_info_display.php
  3. tpl_product_music_info_display.php


The above templates were changed in 1.3.7 and they are also modified by Tabbed Products.
Very easy to see for yourself that the same single code change from v.1.36 to v1.37 in the above three files was the addition of:

Code:
&& $flag_show_product_info_free_shipping
to:

Code:
<?php if(zen_get_product_is_always_free_shipping($products_id_current)) { ?>
so that line is now:

Code:
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
I don't think the above is a reason for updated Tabbed Products.

Woody