
Originally Posted by
thezombified
I just noticed that while prices are displayed on the product list pages, the prices aren't showing up on the individual product info pages.
Also I'm getting a bit too much space between the description and the 'Add to Cart' button.
www.thezombified.com
Find the file tpl_product_info_display.php it is in:
includes - templates - YOURTEMPLATE - templates -
Look for a section that reads:
Code:
<!--bof Product Price block -->
<h2 id="productPrices" class="productGeneral">
<?php
// base price
if ($show_onetime_charges_description == 'true') {
$one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
?></h2>
<!--eof Product Price block -->
This should be between the product name block and the free ship icon block. I don't think it is in your version of the file. The source code of your page reads:
<!--bof Product Name-->
<h1 id="productName" class="productGeneral">Hallowhaus - Issue #1</h1>
<!--eof Product Name-->
<!--bof free ship icon -->
<!--eof free ship icon -->
You can see there is not much between product name and free ship! If it isn't then you need to reinstate it. First option would be to paste the entire code block above to wherever you want it to appear on the page.