Search Results for 'comment notification'
-
AuthorSearch Results
-
May 13, 2009 at 3:17 pm #45254
enlightenmental1
Participant@ Atul Singhal
duplicate you /register.php in your buddypress-home theme,
(duplicate it to keep it as a backup)
towards the bottom of register.php you’ll see something like “do_bp_core_signup”
you can comment that out and replace it with the Iframe version of the rpx plugin
‘
scrolling=”no” frameBorder=”no” style=”width:400px;height:240px;”>
</iframe>
‘
just change YOUR_SITE and WELCOME_LANDING_CUSTOM_PAGE to your own token url
one issue I have with this on my site, is that the RPX plugin doesn’t gather much information… sometimes it will only get the email/username… sometimes the email is a “proxy mail email ” => @yahoo12343-proxymail.com (I haven’t confirmed this with all the 3rd party login providers)
this will effect how the notifications work… so you’ll proly want your landing page to have instructions to update their profile information
that should work
February 16, 2009 at 3:08 am #38036In reply to: BP admin bar on bbpress front page
terryjsmith
Participant@johnjamesjacoby I know what you mean. If you really want to hack it, here are the directions:
1. Comment out this, in bp-core/bp-core-adminbar.php, line 14:
do_action( ‘bp-adminbar-logo’ );
2. Add this on the following line:
bp_adminbar_logo();
3. Comment out this, in bp-core/bp-core-adminbar.php, line 19:
do_action( ‘bp-adminbar-menus’ );
4. Add underneath it:
bp_adminbar_login_menu();
bp_adminbar_account_menu();
bp_adminbar_blogs_menu();
bp_adminbar_notifications_menu();
bp_adminbar_authors_menu();
bp_adminbar_random_menu();
5. Add the following scripts to your template’s header.php file:
mu-plugins/bp-core/js/jquery/jquery.livequery.pack.js?ver=2.7
mu-plugins/bp-core/js/general.js?ver=2.7
mu-plugins/bp-core/bp-core-ajax-handler.php
mu-plugins/bp-core/css/admin-bar.css?ver=2.7
6. Finally, add the following to your template’s footer.php:
include(‘../../../wp-content/mu-plugins/bp-core/bp-core-adminbar.php’);
bp_core_admin_bar();
7. If you’re not already, include wp-blog-header.php into bb-config.php:
require_once(‘../wp-blog-header.php’);
Note: I do not recommend this solution as upgrades, patches, etc. will break this functionality.
With that in mind, I’ll be releasing a much sexier solution in the form of a plugin soon as stated above.
Hope this helps,
Terry
February 7, 2009 at 10:51 am #37412In reply to: Disable group invite notifications
Burt Adsit
ParticipantNope. That function is the beginning of a series of things that happens. The function that actually send out the emails is: groups_notification_group_invites() in /mu-plugins/bp-groups/bp-groups-notifications.php
Let me guess, you want to disable it there? Line 261 of that function is:
wp_mail( $to, $subject, $message );
Comment that out and no group invite email will ever leave your box.
-
AuthorSearch Results