Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
www.online-biz-uk.co.uk
let me know
http://forum.opencart.com/viewtopic.php ... 10#p240126
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester

Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
YOU CAN DO THIS IN OPENCART 1.4.9.4 AS FOLLOWSfilippota wrote:yes pbenfield thats exactly the way i'd like to show dimensions on my site.
catalog/view/theme/default (your template)/product/product.tpl
You can view your php text from "line 19 "and compare with mine as all these "headings" are in the database automatically, those are the names in the brackets [,,,] but I have changed the text from the original title for example "location" in dataabse I have chaned the title to "information" but the entry you put into the product data entry field will be headed "Location". when viewing the product page the text wuill be changed to information with your text "information". You just need the sizes added as below (hope that is clear)
Code: Select all
<?php if ($display_price) { ?>
<tr>
<td><b><?php echo $text_price; ?></b></td>
<td><?php if (!$special) { ?>
<?php echo $price; ?> excl. VAT
<?php } else { ?>
<span style="text-decoration: line-through;"><?php echo $price; ?></span>
<?php } ?></td>
</tr>
<?php if ($special) { ?>
<tr>
<td><b>Offer excl. VAT:</b></td>
<td><span style="color: #F00;"><?php echo $special; ?></span></td>
</tr>
<?php } ?>
<?php } ?>
<tr>
<td><b><?php echo $text_availability; ?></b></td>
<td><?php echo $stock; ?></td>
</tr>
<tr>
<td><b><?php echo $text_model; ?></b></td>
<td><?php echo $model; ?></td>
</tr >
<tr>
<td><b>SKU:</b></td>
<td><?php echo $product_info['sku']; ?></td>
</tr>
<tr>
<td><b>Information:</b></td>
<td><?php echo $product_info['location']; ?></td>
</tr>
// add this code below begin.....................//
<tr>
<td><b>Length cm:</b></td>
<td><?php echo $product_info['length']; ?></td>
</tr>
<tr>
<td><b>width cm:</b></td>
<td><?php echo $product_info['width']; ?></td>
</tr>
<tr>
<td><b>Height cm:</b></td>
<td><?php echo $product_info['height']; ?></td>
</tr>
//code finished here .....//
<td><b>Min Quantity:</b></td>
<td><?php echo $product_info['minimum']; ?></td>
</tr>] </tr>
<?php if ($manufacturer) { ?>
<tr>
<td><b><?php echo $text_manufacturer; ?></b></td>
<td><a href="<?php echo str_replace('&', '&', $manufacturers); ?>"><?php echo $manufacturer; ?></a></td>
</tr>
<?php } ?>
Hope it helps
Dedication and passion goes to those who are able to push and merge a project.
Regards,
Straightlight
Programmer / Opencart Tester
Users browsing this forum: No registered users and 18 guests