Add text before Price in opencart
Posted: Fri Jan 20, 2017 1:14 am
Hello everyone,
I would like to know how do I add text before price in opencart?
I have tried to modify the following code in catalog/view/theme/journal/template/product/product.tpl (Premium Journal theme)
Default
After Modified
It works correctly, but when I chose the option selection such as size or colour, the "Price:" text will disappear.
http://www.ry-express.com
I apologize if this is a duplicated question.
Thank you!
I would like to know how do I add text before price in opencart?
I have tried to modify the following code in catalog/view/theme/journal/template/product/product.tpl (Premium Journal theme)
Default
Code: Select all
<li class="product-price"><?php echo $price; ?></li>
<li class="price-old"><?php echo $price; ?></li>
Code: Select all
<li class="product-price"><div class="custom-price">Price:</div><?php echo $price; ?></li>
<li class="price-old"><div class="custom-price">Price:</div><?php echo $price; ?></li>
http://www.ry-express.com
I apologize if this is a duplicated question.
Thank you!