-
Christian Freeman (codelion) replied to the topic How to Disable ALL BuddyPress Emails in the forum Creating & Extending 7 years, 7 months ago
Thanks for the super quick response @shanebp!
I did take a look at this filter, but in reviewing the BP_Email class, it would appear that this only disables the BP PHP Mailer templating system, but still sends the email using WP Mail.
I really want to prevent it from sending any BP Emails at all, whether through WP Mail, or the BP_Email…[Read more]
-
William W. Hurst's profile was updated 7 years, 7 months ago
-
Prashant Singh replied to the topic Widgets / sidebar issue in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
Can you check with the default theme? If it works with that then I think it’s your theme’s issue otherwise it is supposed to be not there and should be applied by theme settings only.
Thanks
-
Prashant Singh replied to the topic Where do I find this text….so I can change it!? in the forum Creating & Extending 7 years, 7 months ago
Hi,
You can use this plugin https://wordpress.org/plugins/string-locator/ and search for your string. If it is in the template then this plugin will list you all the templates having that string.
Thanks
-
Prashant Singh replied to the topic After Upgrade No Inbox or Sent Box in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
Please check if the private messaging component is enabled there or not.
Thanks
-
Prashant Singh replied to the topic How to redirect user to their Buddypress profile in the forum How-to & Troubleshooting 7 years, 7 months ago
That’s great 🙂
-
Prashant Singh replied to the topic After updating the BuddyPress plugin, the account activation link does not work in the forum How-to & Troubleshooting 7 years, 7 months ago
That’s great 🙂
-
Prashant Singh replied to the topic Changing Avatar based on field data in the forum Creating & Extending 7 years, 7 months ago
Hi,
There is a filter code already written to modify this:
return apply_filters( 'bp_get_activity_avatar', bp_core_fetch_avatar( array(
'item_id' => $item_id,
'object' => $object,
'type' => $type,
'alt' => $alt,
'class' => $class,
'width' => $width,
'height' => $height,
'email' => $email
) ) );You can…[Read more]
-
Prashant Singh replied to the topic Widgets / sidebar issue in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
Please check if you have the option to set sidebar on the member directory page.
Please go to pages and find the page members and check if you can assign a sidebar there.
Thanks
-
Prashant Singh replied to the topic My activity group and user avatar links issue in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
You have to do it something like this:
add_filter('bp_get_activity_action','ps_remove_avatar_activity',10,1);
function ps_remove_avatar_activity($args){
//Write your code here
}Thanks
-
Prashant Singh replied to the topic Admin notifications in the forum Installing BuddyPress 7 years, 7 months ago
-
Prashant Singh replied to the topic After updating the BuddyPress plugin, the account activation link does not work in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
Please check if it is working fine with legacy template if yes then it is a possible bug of new template.
Thanks
-
Prashant Singh replied to the topic How to redirect user to their Buddypress profile in the forum How-to & Troubleshooting 7 years, 7 months ago
Hi,
Please paste the following code snippet in child theme’s functions.php or bp-custom.php
function ps_redirect_profile() {[Read more]
if(is_user_logged_in()){
if(is_page('your_page_slug'))
{
wp_redirect( bp_core_get_user_domain( get_current_user_id() ));
exit;
}
}
}
add_action( 'wp', 'ps_redirect_profile'… -
JASON RUEN JOHN's profile was updated 7 years, 7 months ago
-
ledongchieu5 le's profile was updated 7 years, 7 months ago
-
Kankerpayudara Alami's profile was updated 7 years, 7 months ago
-
Bourdon Defence's profile was updated 7 years, 7 months ago
-
Christian Freeman (codelion) started the topic How to Disable ALL BuddyPress Emails in the forum Creating & Extending 7 years, 7 months ago
Hi guys,
I’m building a new BuddyPress plugin, and I want to use my own internal email system instead of the BP_Email system. My question is, is there a function, filter, or something else that I can use to disable ALL BuddyPress Emails? (This includes Activation, Notifications, etc.)
Also, are there any action hooks that I can use to send my…[Read more]
-
Law Office of Ronald D. Weiss, P.C.'s profile was updated 7 years, 7 months ago
-
erik matira's profile was updated 7 years, 7 months ago
- Load More