wp-activate-users.php line 40 is totally broken.
$(“#signup-welcome).p(;:last-child').css('display', 'none');
Wrong and un-closed quotes, and jQuery selectors are borked.
wp-activate-users.php line 40 is totally broken.
$(“#signup-welcome).p(;:last-child').css('display', 'none');
Wrong and un-closed quotes, and jQuery selectors are borked.
I changed it to this and no longer get any errors, though this plugin doesn't display anything for me:
jQuery('#signup-welcome p:last-child').css('display', 'none');
This topic has been closed to new replies.