Created
July 14, 2014 12:41
-
-
Save bluvertigo/47824fda15c3e2cddd44 to your computer and use it in GitHub Desktop.
Cambiare link al bottone "Return to shop" / "Torna al Negozio"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_woocommerce_return_to_shop_redirect( $return_to ) { | |
return 'LINK_TUO_URL'; | |
} | |
add_filter( 'woocommerce_return_to_shop_redirect', 'my_woocommerce_return_to_shop_redirect', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment