find:
PHP Code:
<?php
if ($products_date_available > date('Y-m-d H:i:s')) {
echo (($flag_show_product_info_quantity == 1) ? 'Pre-Order' : '') . "\n";
}else{
echo (($flag_show_product_info_quantity == 1) ? '' . ($products_quantity > 0 ? TEXT_PRODUCT_IN_STOCK : TEXT_PRODUCT_NOT_IN_STOCK) . '' : '') . "\n";
}
?>
change to:
PHP Code:
<?php
if ($products_date_available > date('Y-m-d H:i:s')) {
echo (($flag_show_product_info_quantity == 1) ? TEXT_PRE_ORDER_BOF . zen_date_long($products_date_available) . TEXT_PRE_ORDER_EOF . '<br/>Pre-Order' : '') . "\n";
}else{
echo (($flag_show_product_info_quantity == 1) ? '' . ($products_quantity > 0 ? TEXT_PRODUCT_IN_STOCK : TEXT_PRODUCT_NOT_IN_STOCK) . '' : '') . "\n";
}
?>
create a file called: product_info_extras.php in /includes/languages/english/extra_definitions/YOUR_TEMPLATE_NAME
add the following code to product_info_extras.php
PHP Code:
<?php
/**
*
* @copyright Copyright 2013 rbarbour - ZCadditions
* @license http://www.gnu.org/licenses/ GNU Public License V3.0
* /includes/languages/english/extra_definitions/YOUR_TEMPLATE_NAME/product_info_extras.php
*/
define('TEXT_PRE_ORDER_BOF','<font color="red">This item will begin shipping on (');
define('TEXT_PRE_ORDER_EOF','). Orders containing this item will not ship until this item is available.</font>');
?>
That's it