rgilman
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Docs] Keep subpages in group context?I figured out that I could send you both the PDF via the plugin’s github issues and have done so.
Forum: Plugins
In reply to: [BuddyPress Docs] Keep subpages in group context?I’ve done some testing and (so far) the plugin works as expected if the wiki add-on isn’t active. When it’s active, they conflict. I’ve saved the long error dump to a pdf which I’d be happy to send to you or Boone. I’m afraid that debugging this is likely beyond my skill level. It doesn’t look like there is a way to add attachments here.
Without the wiki add-on but with the “docs-in-group” plugin, there remains the site-wide /docs/ url that list all the docs from all the user’s groups and any that aren’t attached to a group.
I’d still love to be able to use the wiki add-on. Hopefully there is a simple fix.
Forum: Plugins
In reply to: [BuddyPress Docs] Keep subpages in group context?Thanks, David, I’ll take a look. I’d like to explore keeping the docs in groups and using the wiki add-on for site-wide items.
Forum: Plugins
In reply to: [BuddyPress Docs] Add .current_page_parent for docs subpages?I’ve come up with the follow that seems to work:
add_filter('nav_menu_css_class', 'bp_docs_is_parent', 10 , 2); function bp_docs_is_parent( $classes, $item) { if (bp_docs_is_bp_docs_page() && $item->title == 'Docs' && bp_current_component() != 'groups') { $classes[] = 'current_page_parent'; } return $classes; }
Is there a better way?
Forum: Plugins
In reply to: [BP Email Assign Templates] Can’t find the template page in BuddyBossWonderful. Thank you!
Forum: Plugins
In reply to: [BP Email Assign Templates] Can’t find the template page in BuddyBossThat’s great news! I’ll note that the buddypress-group-email-subscription plugin puts its settings under Admin > Settings and thus doesn’t need to worry about the BuddyBoss admin UI. I wonder if that might be an option for this plugin as well.
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] Sort replies by discussion in digestFYI, I’ve decided to fork the plugin – too many modifications to easily handle via hooks.
Thanks for all your good work on creating and maintaining bpges.
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] Sort replies by discussion in digestThanks, Boone. This is quite helpful. I’ll see what I can do.
Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] Sort replies by discussion in digestAs additional context, I’m only interested in including forum posts in the digest. It looks like I could use the hook
ass_block_group_activity_types
to eliminate the rest.Forum: Plugins
In reply to: [BuddyPress Group Email Subscription] Sort replies by discussion in digestI would also want to output the discussion thread subject as a sub-heading, nested under each group, and with the posts for that thread under that sub-heading.
Looks like this was a caching issue on my end. All good now.
I’ve installed 2.15 and still get the same message:
/wp-content/plugins/ghostkit/assets/js/main.min.js:1:4293: \'ready\' event is deprecated
Forum: Plugins
In reply to: [Contact Form 7 Modules] shortcodes does not work with WP 3.8This may just be a hack, but I was able to get the hidden fields to work again by changing the ‘add_action’ priority from 10 to 11.
In more detail:
1) Open the file hidden.php within the contact-form-7-modules folder.
2) Go to line 28 where you will find:
add_action('plugins_loaded', 'contact_form_7_hidden_fields', 10);
3) Change the 10 to an 11 and save the file.This will force contact-form-7-modules to load after contact-form-7, which it needs to do so that the shortcode will function. I guessing that some change in 3.8 somehow changed the load order of plugins — or at least this pair of plugins.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack counter badgeI got the following process to work:
1) deactivate the Manual Control for Jetpack plugin
2) click on Jetpack in the side navbar to open it
badge turns off at this point
3) activate the Manual Control plugin
badge stays off.I didn’t need to delete Manual Control.
Thanks, everyone, for all the clues.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack counter badgeI have the same issue — black circle with a two in it with the latest updates and no way I can see to get the badge to turn off.