WooCommerce Snippets
Just a handy collection of small snippets for customising WooCommerce.
Just a handy collection of small snippets for customising WooCommerce.
<?php | |
// Redirect user after registration. | |
add_filter( 'woocommerce_registration_redirect', function () { | |
return home_url('thankyou'); | |
} ); | |