I found out that all items listed for a product data can be made to appear next to or above the price. see http://www.online-biz-uk.co.uk as an example.
lets get started
open: catalgue/view/theme/default(your template)/template/product/category.tpl
place the following after the code below around line 54
Code: Select all
<a href="<?php echo $products[$j]['href']; ?>"><?php echo $products[$j]['name']; ?></a><br />
<span style="color: #999; font-size: 11px;"><?php echo $products[$j]['model']; ?></span><br />
Code: Select all
<?php echo $products[$j]['length'];?> cm. price:
In my case it looks like this
.......Chicago Midi Base Cabinet 35
218.3042
35.00 cm. price: £209.00 .......
In your case it might be weight, location, width or any other item listed in product decritption or data listed in the product database (this is where the information is taken from.)
To let the template know it is a text entry you must add the following to
catalogue/controller/product/category.php
find the following code around line
Code: Select all
$this->data['products'][] = array(
name' => $result['name'],
'model' => $result['model'],
Code: Select all
'length' => $result['length'],
Hope this is useful to other users