Editing Side Boxes/Modules
Posted: Fri Nov 26, 2010 11:23 pm
How do I edit the side cart, I want to remove "view cart - checkout" so it just displays the product and price?
OpenCart Community Forum - Discuss shopping cart and e-commerce solutions.
https://forum.opencart.com/
Code: Select all
<div style="padding-top:5px;text-align:center;clear:both;"><a href="<?php echo $view; ?>"><?php echo $text_view; ?></a> | <a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a></div>
Hi, I have done this now, but when I add a product, it goes to the module as I want it too, but still displays the view checkout etc, if I refresh the page the view checkout link disapears, any clues?WhiteBirch wrote:opencart\catalog\view\theme\default\template\module\cart.tpl
Around line 29 remove or comment out:
Code: Select all
<div style="padding-top:5px;text-align:center;clear:both;"><a href="<?php echo $view; ?>"><?php echo $text_view; ?></a> | <a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a></div>