Skip to content

Instantly share code, notes, and snippets.

@rynaldos
Created January 25, 2023 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rynaldos/17b7a2101b9ab5bb92139a1c9885de24 to your computer and use it in GitHub Desktop.
Save rynaldos/17b7a2101b9ab5bb92139a1c9885de24 to your computer and use it in GitHub Desktop.
Redirect the WooCommerce "return to shop" link to another page
add_filter( 'woocommerce_return_to_shop_redirect', 'wc_change_return_to_shop_redirect' );
function wc_change_return_to_shop_redirect() {
return 'https://www.example.com/custom-page';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment