Hi,
I just left Divi Theme to yours and I am totaly satisfied !
Just one thing I noticed.
In my functions.php in woodmard child folder, I use this snippet to redirect user to a specific page.
/* redirect after registration */
add_filter( ‘woocommerce_registration_redirect’, ‘custom_redirection_after_registration’, 10, 1 );
function custom_redirection_after_registration( $redirection_url ){
// Change the redirection Url
$redirection_url = home_url(‘/inscription-reussie’);
return $redirection_url; // Always return something
}
However since I’ve switched to your theme this does not trigger 100% of time and I can’t track my registrations. Do you have an idea why this does not work on your theme ?
———
Another part,
Do you provide a css class to trigger Registration as a pop-up ?
Like you do with ‘login-side-opener’ to login ?
I would like to put this css class on a button to open the popup
Thanks
Best regards,
And again really nice job !
Jeremy