Verifying email isn’t working
-
I had configured it to require approval, and also require email verification. I get an email for approval, and I can approve them. They get an email asking to verify the email, and click the link, it opens the email confirmation page, which is blank with just a title, but they are still pending needing verification, the link and page load doesn’t verify their email.
Also (minor issue) it’s trying to load a “parent_style” even though I am not using a child theme, and it causes both mixed content SSL errors (the theme URL in the theme style.css is not https), I edit the link to be https, and it causes a 404 error in the console, that parent style CSS file doesn’t exist. I think it needs some if then logic added:
if ( is_child_theme() ) { wp_enqueue_style( 'parent-style', trailingslashit( get_template_directory_uri() ) . 'style.css' ); }
- The topic ‘Verifying email isn’t working’ is closed to new replies.