nettyloadstar
Forum Replies Created
-
same here!
Did you check the error logs in your server? Or the mailaccount where the mail is sending from?
Yes, that’s the exact log error I had!
Hi, something changed. I got a load of server errors before, I could replicate the error. Now I changed that function back to your original code and it works without error… whatever it was, I don’t know..
I can remember I stopped using recaptcha on the register form. Recaptacha is not functioning well lately, I noticed on other sites as well….
When your plugin shows the recaptcha error it is not clear what people should do… even I didn’t know what to do ( otherways I could change the recapatcha error text)If you are not familiar with writing in templates, maybe let someone else do it for you.
I have put I right before the last php tags in the footer.php ( before the wp_footer() call ).
<script>
jQuery( document ).ready(function() {
// remove not functioning click fir both fields
jQuery(“#user_pass_field .password_preview”).attr(“href”, “”);
jQuery(“#user_confirm_password_field .password_preview”).attr(“href”, “”);// attach new click
jQuery(“#user_pass_field .password_preview”).click( function(){
setPW(1)
});
jQuery(“#user_confirm_password_field .password_preview”).click( function(){
setPW(2)
});function setPW($arg){
if($arg==1){
jQuery(‘#user_pass_field .password_preview’).toggleClass(‘dashicons-visibility’);
jQuery(‘#user_pass_field .password_preview’).toggleClass(‘dashicons-hidden’);
if(jQuery(‘#user_pass_field .password_preview’).hasClass(‘dashicons-visibility’)){
jQuery(“#user_pass”).prop(‘type’,’text’);
}else{
jQuery(“#user_pass”).prop(‘type’,’password’);
}
}else{
jQuery(‘#user_confirm_password_field .password_preview’).toggleClass(‘dashicons-visibility’);
jQuery(‘#user_confirm_password_field .password_preview’).toggleClass(‘dashicons-hidden’);
if(jQuery(‘#user_confirm_password_field .password_preview’).hasClass(‘dashicons-visibility’)){
jQuery(“#user_confirm_password”).prop(‘type’,’text’);
}else{
jQuery(“#user_confirm_password”).prop(‘type’,’password’);
}}
}});
</script>I have the same issue, I just put an jquery function in my footer to do the trick.