At first I thought Template Monster had been at it again. But you do have pricing on some of your items so is seems you need to log back into admin and add prices to the rest of them.
http://bowsbride.co.uk/index.php?mai...w&disp_order=4
That link is New Products sort order by price highest to lowest.
OOPS I Spoke too soon. Yes the code for price on your product info page seems to be missing.
Open your templates/your-template/templates/ tpl_product_info.php and find
<!--eof Product Name-->
This is where the default code for price belongs:
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 -->
<!--bof free ship icon -->
between product name and ship free icon