fastquick
Forum Replies Created
-
The following javascript not working
jQuery(document).ready(function($) { $('#registerform').find(':submit').click(function(e) { if(success) { alert('success'); }Any suggestions.
Thanks.
Thanks for the information. I am using some security plugins. sometimes problems are happening by other plugins.
is it possible to implement javascript code as below to show pop up message as “registration success, verify email link” on registration page after registration successful.
jQuery(document).ready(function($) {
$(‘#registerform’).find(‘:submit’).click(function(e) {
if( ! isGmail( $(‘#user_email’).val() ) ) {
e.preventDefault(); // Prevent the form from submitting
alert(‘You can only register with an @gmail.com email address!’);
return false;
}
});
});function isGmail( address ) {
return address.indexOf(“@gmail.com”, this.length – 10) !== -1;
}Thanks
Am I need to add any other short code along with [user_verification_check] to show the registration successful message on registration page?
I already added custom message under message section in “Registration success message” box
But still registration page redirecting to home page without any message as “registration success. Activate email”
Help me
Please help me as soon as possible