Your cart is currently empty!
Modify the return-shop and continue-shopping links
Changes the return-to-shop and continue-shopping links to go to a specific product. These buttons are found on an empty Cart page and on an empty Orders page within My Account.
add_filter( 'woocommerce_return_to_shop_redirect', function( $link ) {
return '/';
} );
add_filter( 'woocommerce_continue_shopping_redirect', function( $link ) {
return '/';
} );
add_filter( 'gettext', function( $translated ) {
switch( $translated ) {
case 'Browse products':
case 'Continue shopping':
return 'Visit home page';
}
return $translated;
} );
Instructions for Modify the return-shop and continue-shopping links
- Log into a staging or locally hosted clone of your site.
- Install and activate Code Snippets plugin.
- WP Admin > Snippets > Add New
- Copy and paste the code from the section above.
- Check to ensure formatting came over properly.
- Customize the code as desired.
- Add a meaningful title.
- Select whether to run on front-end or back-end (or both).
- Click “Save and Activate”.
- Test your site to ensure it works.
- Disable if any problems, or recover.
- Repeat for live environment.
Need help modifying Modify the return-shop and continue-shopping links?
Contact me. I can help with fitting projects or refer to my partner.
License
All code snippets are licensed GPLv2 (or later) matching WordPress licensing.
Except when otherwise stated in writing the copyright holders and/or other parties provide the program as-is without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose.
Disclaimer of warranty