Created
October 28, 2016 10:48
-
-
Save MinaPansuriya/753822a3f6cd4b6e47b9fa17dea97e13 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* @Title: WooCommerce Change "Continue Shopping” Link on the Cart Page | |
* @Author: Mina Pansuriya | |
* @Website: http://minapansuriya.com | |
*/ | |
add_filter( 'woocommerce_continue_shopping_redirect', 'pbs_change_cart_continue_shopping_link' ); | |
function pbs_change_cart_continue_shopping_link() { | |
return 'http://www.exmple.com/page-name'; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment