Forum
Perch Members Email Exists
Hello All
i have a paswordless checkout form with
action="/shop/checkout/confirmation"
so people submit the data and move on
but by doing this you miss the warning if a email exists
i could use ajax with a submit button then a next button but this would be adding a click
are there any other solutions
like
<?php if member_email_exists() {
echo 'Email Exists';
} else {
Redirect to this page
} ?>
Instead of
use
Thanks
Never knew about that function :)