Re: How to put price at the bottom of product pages, not the top?
Hi
In your includes/templates/template_default/tpl_product_info_display.php, you'll find this :
PHP 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 -->
Move this block, to where you want it.
“Though the problems of the world are increasingly complex, the solutions remain embarrassingly simple.” ― Bill Mollison