Page 1 of 1
Display weight in featured box
Posted: Fri Mar 16, 2012 9:58 am
by dellasys
I'm a newbie to opencart .So ,can anyone may teach me how to display weight and weight unit in the featured box beside the price .I knew need to add somethings like <?php echo $weight ; ?> but it displays nothing. Appreciate for your help .
Re: Display weight in featured box
Posted: Sat Mar 17, 2012 11:35 am
by dellasys
Jeremy Fisk wrote:you will first have to grab it in the controler
Can you please teach me step by step ?? i cant do this

.. thank you a lot ...
Re: Display weight in featured box
Posted: Tue Mar 20, 2012 8:16 am
by dellasys
I solved the problem above.And i'm glad that i can share somethings here to help others.
catalog/controller/module/featured.php
After
Code: Select all
$this->data['products'][] = array(
Add this
Code: Select all
'weight' => $product_info['weight'],
'weight_class' => $product_info['weight_class'],
Go to catalog/view/theme/default/template/module/featured.tpl
After
Code: Select all
<div class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a>
line11
Add this
Code: Select all
(<?php echo $product['weight']; ?><?php echo $product['weight_class']; ?> )
should be ok

Re: Display weight in featured box
Posted: Thu Aug 13, 2015 10:24 pm
by Flysan
I try on OC 2.0.2.0 but it doesn't work...how to make it work?