Created
May 11, 2020 05:44
-
-
Save iamsathyaseelan/4c976a6a936f5c16a1a16bbbcfb32b19 to your computer and use it in GitHub Desktop.
change recovery url retainful
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
add_filter('retainful_recovery_redirect_url','retainful_recovery_redirect_url'); | |
function retainful_recovery_redirect_url($url){ | |
$url = wc_get_cart_url(); | |
return $url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment