I'm using essential v2.3.3
I have a very simple cart. I have only one category (default) and I would like to be able to redirect my customer back to the category page when they click on the "Continue Shopping" button on the popup notice. It works fine with the checkout page "Continue Shopping" button.
I have tried without success to modify the code to redirect to a specific page (not a programmer, but I try).
The cloest I have come is using this recommended code in the checkout/notoice.php
echo $this->cartClass->displayButton(JText::_('CONTINUE_SHOPPING'),'continue_shopping',$this->params,'','window.top.location.href=\''.JRoute::_($this->config->get('continue_shopping')).'\'; return false;','id="hikashop_add_to_cart_continue_button"');
I'm trying to get to "index.php/givingcards" but it returns "index.php/givingcards/givingcards" so I get the 404 page error of course.
I have "index.php/givingcards" set in the Continue Shopping button's URL box in the checkout tab, and the same thing on the main tab for "URL where you will be redirected when the cart is empty" if that matters.
I'd be happy to even hard code this if I knew how. Can you give me some direction?
Thanks