RHP
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Extended Search] Search protected pages?Hi Sumit,
I just wanted to note the code that I added via a plugin called “My Custom Functions”. This, combined with the below code, allowed the searching of protected pages with wordpress, only your plugin seemed to conflict with this, so I had to use something else. I know zero about coding but thought I’d share this in case it’s useful.
// include password protected pages in search results
add_filter( ‘posts_search’, ‘include_password_posts_in_search’ );
function include_password_posts_in_search( $search ) {
global $wpdb;
if( !is_user_logged_in() ) {
$pattern = ” AND ({$wpdb->prefix}posts.post_password = ”)”;
$search = str_replace( $pattern, ”, $search );
}
return $search;
}Forum: Plugins
In reply to: [WP Extended Search] Search protected pages?Hi Sumit,
Thank you for your reply! I appreciate you making the time.
I’ve actually found a work around using a two different plugins. But if you update it, I’d be happy to support it, as yours is much more intuitive.
Forum: Plugins
In reply to: [Collapse-O-Matic] Image in trigger not displayingOh hang on, it now appears to be working?! Progress! Perhaps I didn’t update it from the Text Editor above. But I’m getting a “> mark after the image??
No… It seems to be very erratic. If I try to update/edit anything after cut and pasting into the Text Edtior (after clicking update first) it just disappears again. For example, I type in a text alternative incase the image doesn’t load and it disappears again after updating.
Any ideas?
Forum: Plugins
In reply to: [Collapse-O-Matic] Image in trigger not displayingThanks for your help. I was indeed, so I’ve cut and paste the text to the Text Editor but now it leaves a blank space. So same as before.
Here is what I get: http://oi45.tinypic.com/ries5u.jpg
Forum: Plugins
In reply to: [Collapse-O-Matic] Image in trigger not displayingOf course, my apologies:
Forum: Plugins
In reply to: Facebook comments – Showing random/unrelated comments?Anyone???