ljarbeau LiteCart Fan Από United States Μέλος από Οκτ 2019 ljarbeau 21 Δεκ 2021 17:10 Looking to add a continue shopping button on the cart page.... Am I missing the feature somewhere? Thank you for the help Laura
s22_tech Moderator Από United States Μέλος από Οκτ 2019 s22_tech 21 Δεκ 2021 17:42 As of 2.2.8, it's not built-in to the cart. So I added it to my carts by including the following code towards the bottom of [url=/includes/templates/default.catalog/views/box_checkout_cart.inc.php]/includes/templates/*.catalog/views/box_checkout_cart.inc.php[/url] <a class="btn btn-default" onclick="javascript:history.go(-1);"> <?php echo language::translate('title_continue_shopping', 'Continue Shopping') ?> </a> </div>``` It may not be the perfect solution, but it gets the job done. Marc
jackyjoy123 LiteCart Fan Από India Μέλος από Ιουν 2021 jackyjoy123 31 Ιαν 2022 13:23 thanks for the information.