Skip to content

Instantly share code, notes, and snippets.

@iamsathyaseelan
Created May 11, 2020 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save iamsathyaseelan/4c976a6a936f5c16a1a16bbbcfb32b19 to your computer and use it in GitHub Desktop.
Save iamsathyaseelan/4c976a6a936f5c16a1a16bbbcfb32b19 to your computer and use it in GitHub Desktop.
change recovery url retainful
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