i need to display Product Weight under Product price in the single product page & search page on OpenCart 3.0.2.0 .
How i can do that ?
i need to display Product Weight under Product price in the single product page & search page on OpenCart 3.0.2.0 .
How i can do that ?
this is relatively simple if you understand the MVC (Modal, View, Controller) pattern. here are the steps required:
catalog/controller/product/product.php
on line 283
(right after the price because it is a nice place for it) add this code
$data['weight'] = $product_info['weight'] + 0 ;
(the + 0 removes the zeros and makes it looks nicer)
catalog/view/theme/default/template/product/product.twig
on line 162
add{{weight}}
If you don't see the changes, that is because you have twig Cache turned on. go to admin/dashboard and on the top right corner find the gear button. click it and click refresh cache. you can also turn off the cache while you are in development mode. http://joxi.ru/LmGewYZiwBW0zA