Arrh... Thanks for the pointer.... working now.
I have one more BIG problem with the products_info_display as the template has been refined since the first one (which I'm using live) to the current one. One your site all looks well, with the attributes in a box next to the image, but my page turns out very different in layout, but ok.
Because I have a lot of attributes I need to simply (so I thought) place the code for 'product description' above the 'attributes' but is falls apart in that the attributes 'box' now expands off the page edge. (to the right) I would also love to know how I can get the 'price' and 'product title' to be up top right of image? I want the 'attributes' box & 'add to cart' to be in a box on there own.
You can see what I mean here:http://www.thepersonalisedtouch.com/demo/index.php?main_page=product_info&products_id=41
The code follow:
So, I'm placing this code ABOVE the next code:
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
<br class="clearBoth" />
----------------------------------JUST TO SEPERATE HERE
<div id="cart">
<!--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 -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
<!--bof Attributes Module -->
<?php
if ($pr_attr->fields['total'] > 0) {
?>
<?php
/**
* display the product atributes
*/
require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php'); ?>
<?php
}
?>
<!--eof Attributes Module -->