mchrisb03
Forum Replies Created
-
Nick,
The conflict is definitely with the X Theme. Please see my earlier post where I show the JS error. The file x-body.min.js is a file in the X Theme. I do not have a public page with the problem that I can demo but others have listed theirs.
Hi Nick,
I just installed 2.2.3 and disabled / enabled the “Always Enqueue Scripts & Styles”.
The the exception is still thrown when I hover over the date regardless of this setting.
Thanks!
FYI.. The newest version of this plugin is conflicting with the X Theme on my website as well…
Here is the JavaScript error:
Uncaught TypeError: Cannot read property 'call' of undefined x-body.min.js?ver=3.2.2:1 i x-body.min.js?ver=3.2.2:1 e.fn.imagesLoaded x-body.min.js?ver=3.2.2:1 x._waitForContent jquery.qtip.js:633 x._update jquery.qtip.js:619 x._updateContent jquery.qtip.js:639 x.render jquery.qtip.js:198 (anonymous function) jquery.qtip.js:1483 m.isFunction.e jquery.js?ver=1.11.1:2Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Distribution based on BuddyPress group membership?Hummm.. I just thought of potential problem. I am not sure my solution will work with the Background sending as the current group may be different then. My testing to this point was with immediate notifications.
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Distribution based on BuddyPress group membership?The following page explains how this is set up in the newest BuddyPress and bbPress:
http://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/
The only change to the instructions I would make is that in B5 and C2 it says:
Change Forum Attribute Type from “Forum” to “Category”
I found that does not work. You have the leave the bbPress Forum Attribute Type set to Forum (instead of Category) in order for it to be a selectable Forum in the BuddyPress Group.
I poked around in the BuddyPress and bbPress code to figure out what I needed to do and then I hacked your plugin to make it work based on BuddyPress group membership.
Here is what I did at a high level…
I added the bp global object (global $bp;) to the notify_new_topic and notify_new_reply functions and populated the recipients array in both with the following call:
$recipients = BP_Groups_Member::get_group_member_ids( $bp->groups->current_group->id );
Also, the following string was added to the email to indicate in which group the topic / reply was posted:
$bp->groups->current_group->name
I have not added any Settings options or really made any other changes in my hacked up version.
Please let me know if you want any additional information about this.
Thanks,
–Chris