Sorry to keep bothering, but I am trying to figure this out on my own. I have added the following code to my over-ride tpl_product_info_display.php file, but nothing is happening. Can anyone help??? The code currently resides in the productModelNumber DIV section.

Code:
  <!-- SPD Added Shipping Commitment -->
  <?php if ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_shipping)) {
    $manufacturers_shipping_query = "select m.manufacturers_shipping
                            from " . TABLE_MANUFACTURERS . " m
                            left join " . TABLE_PRODUCTS . " p on m.manufacturers_id = p.manufacturers_id
                            where m.manufacturers_id = p.manufacturers_id and p.products_status= 1";
 
    $manufacturers_shipping = $db->Execute($manufacturer_shipping_query);
 
    echo ( TEXT_PRODUCT_MANUFACTURER_SHIPPING . $manufacturers_shipping ) . "\n"; ?>
  <?php } ?>