locomo
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Docs] Incompatible with Genesis Themes?Resolved!
Thanks to Boone for guidance in debugging this!
Genesis was running a check on is_singular() that was failing in the case of bp_docs_is_doc_create() || bp_docs_is_global_directory() || bp_docs_is_mygroups_directory()
here is my workaround to force is_singular() to pass in the case of these BP Docs pages
add_action( 'bp_docs_template_include', 'my_check_docs_page' ); function my_check_docs_page() { if ( bp_docs_is_doc_create() || bp_docs_is_global_directory() || bp_docs_is_mygroups_directory() ) { add_action( 'bp_template_include_reset_dummy_post_data', 'my_set_singular' ); } } function my_set_singular() { global $wp_query; $wp_query->is_singular = true; }
Forum: Plugins
In reply to: [BuddyPress Docs] Incompatible with Genesis Themes?it looks like the template being rendered on these 2 paths is genesis/index.php when I think it should be genesis/page.php
still not sure why but it might be something going on in theme-bridge.php ??
okay thanks .. FYI is_admin() only checks if the viewer is in the admin panel and not whether they have admin privileges
would be great if the plugin did some access control to prevent non-admin users from doing database operations
Forum: Plugins
In reply to: [Secure Custom Fields] Conflict with Swift Page Builderi’m experiencing this as well … any resolution?
+1 on the suggestion to allow different emails based on user role – this would be an awesome feature!
working for me, thank you
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] Empty menu items under settings.thanks for that Jeff!
latest version of this plugin is not working at all for us after we updated to wordpress 3.4.1
Forum: Plugins
In reply to: [Contact Form 7] Conflict with Buddypress and Contact Form 7thanks for the fast reply
regarding the first issue – is there a way for me to tell if Contact Form 7 vs Buddypress has called wp_mail ? Buddypress hooks into “wp_mail_from” to override the From address .. I’m thinking I could conditionally apply this filter if I can determine which plugin is calling wp_mail … does that make sense?
regarding the second issue – I’m pretty sure it has to do with Buddypress – when i disable it the spinning “send” graphic appears. Would this be a jquery conflict? I have firebug installed but I’m not really sure how to track it down
cheers!
works great .. for other folks wanting to do this i had to add this code to my theme’s functions.php file to include bbpress custom post types in the search index:
function my_add_bbp_to_search( $post_type ) { $post_type['exclude_from_search'] = false; return $post_type; } add_filter( 'bbp_register_forum_post_type', 'my_add_bbp_to_search' ); add_filter( 'bbp_register_topic_post_type', 'my_add_bbp_to_search' ); add_filter( 'bbp_register_reply_post_type', 'my_add_bbp_to_search' );
sweet .. thanks .. i’ll try it out!
Forum: Plugins
In reply to: [BuddyPress] [Plugin: BuddyPress] Buddypress conflict with MMforms ProThanks Paul, is there a fix you can suggest that would work for Version 1.5.5 until 1.6 is stable?
Does the fix MegaToon TV found have any negative repercussions?
I’d also appreciate some guidance on how to do this
sweet, thanks .. happy to test if that would be of help
yes i’m using it but it doesn’t handle this case