AC
(@purplecodes)
Themeisle Support
Hi @eduiglesias23,
Can you share the link to your Cart Page so we can check?
How did you add the ‘Keep Shopping’ button?
Thank you @purplecodes !!
This is the link: https://eduiglesias.net/carrito/
The “Keep Shopping” button was already when I created the shop.
Let me know if you want to see anything else please.
BR,
Hi @eduiglesias23!
Sorry for the delayed reply!
Unfortunately we are not able to replicate the issue. Could you please tell us if you used a starter site to create your website and if so, which one exactly?
Thank you and have a nice day!
Hi @luciamarinescu!
I guess not… I’ve created the web adding the Neve theme and Woocommerce plugin…
Mat
(@mateithemeisle)
Hello @eduiglesias23 ,
Thank you for your reply and apologies for the delayed response!
By default, the “Continue Shopping” button redirects to the previously visited page – sometimes this makes no sense and you might want to send visitors back to the main shop page instead (or a custom page).
You can try adding the below code snippet into the functions.php file of your child theme and see if that works for you.
add_filter( 'woocommerce_continue_shopping_redirect', 'tisle_change_continue_shopping' );
function tisle_change_continue_shopping() {
return wc_get_page_permalink( 'shop' );
}
Thank you and please let us know how it went!
It worked!! Thank you so much Mat!