Ben Huson
Forum Replies Created
-
By default, all pages are protected.
You could unprotect specific pages by disabling the plugin on certain pages using a filter. For example, add something like this to you functions.php file
<?php function my_password_protected_is_active( $is_active ) { // Deactivate on front page if ( is_front_page() ) { return false; } return $is_active; } add_filter( 'password_protected_is_active', 'my_password_protected_is_active' ); ?>Are you using any sort of caching on your site?
Forum: Plugins
In reply to: [WP Subtitle] Subtitle desappeared from the dashboard!This is resolved in version 2.3.2
Should be fixed in version 1.9
Well spotted. Thank you.
I’ll fix and release an update.
Ben
If you’ve deleted the plugin it should have resolved it, so it may be a caching issue.
Have you tried clearing your browser’s cache or quitting and reopening your browser?
You could try my updated version of that plugin.
Also see this forum post about the Bluehost email issue where someone appears to have resolved their issue.
If the domain is hosted on BlueHost “the email address must exist in the cPanel” for it to be recognised. There is a tech note from Bluehost here.
Forum: Plugins
In reply to: [WP Mail From II] MailFrom II not workingI found a tech note from Bluehost here.
They mentioned that if the domain is hosted on BlueHost “the email address must exist in the cPanel” for it to be recognised.
Can you confirm the email address you are trying to use is setup in the cPanel?
Hi Torre,
Please note as per the notice on the plugin’s ww.wp.xz.cn page that Password Protected doesn’t work with WP Engine due to their caching setup.
Kind regards
Ben
Forum: Plugins
In reply to: [Broken Link Checker] Using broken links with category descriptionWould love for this plugin to be able to support broken links in taxonomy descriptions.
Yes, you can logout by appending “?password-protected=logout” to the URL.
So if you want to create a logout link it would be something like this:
<a href="<?php echo add_query_arg( 'password-protected', 'logout', home_url() ); ?>">Logout</a>If you want to redirect elsewhere I think you should be able to specify a URL:
<a href="<?php echo add_query_arg( array( 'password-protected' => 'logout', 'redirect_to' => 'http://ww.wp.xz.cn' ), home_url() ); ?>">Logout</a>Forum: Plugins
In reply to: [Easy Testimonials] Greater control over the layout of the testimonialThanks Richard.
Are you still having an issue or did you just delete your original post?
Forum: Plugins
In reply to: [List Pages Shortcode] Excerpts not showing for Child PagesPages don’t support excerpts by default.
You need to use something like the Page Excerpt plugin to enable excerpts for pages.
Can you confirm if you’re using that?
Forum: Plugins
In reply to: [Easy Testimonials] Greater control over the layout of the testimonialThanks Richard,
I did take a look in the plugin code but noticed the HTML was echoed directly (and may have used output buffering if I remember right) so I wasn’t sure the best approach to take to filtering this, or providing some sort of template file.