Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rameshelamathi/01ec817819c960d8cad3569d4ab55bf0 to your computer and use it in GitHub Desktop.
Save rameshelamathi/01ec817819c960d8cad3569d4ab55bf0 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