Tagged: not working, pages, password
I have a page I need password protected so I set that up through the WP visibility options. I have deactivated all plugins and when I switch to Twenty Thirteen theme, the password prompt stops me prior to getting to the page and when Enfold is activated, it doesn’t (with nothing else being changed).
Any ideas?
I would also like to add that I have modified template-builder.php found
$content = apply_filters('the_content', $content);
and replaced it with
$content = apply_filters('the_content', $content);
if ( post_password_required() )
{
$content = get_the_password_form();
}
This doesn’t work? I have changed the privacy settings to password protected. I even went as far as to look at the post-template.php to ensure that
if ( post_password_required() )
was present. As far as I can tell this should work?
Any help is GREATLY appreciated.
It seems after a reinstall of the theme (and updating the theme) we have a winner, it works!
Thank you.