Replies
- Brajesh Singh on October 23, 2021 at 1:24 am in reply to: BuddyPress Member Types Pro is not sending account activation email on a specifi #41171
Hi Fabricio,
Thank you for the reply.No issues with the language.
Can you please tell me which one of the following 2 emails are not going:-
1. Email after registration which asks for verifying the email and activating the user account.
2. Welcome email after the user activates their account.
Thank you
Brajesh - Brajesh Singh on October 23, 2021 at 1:22 am in reply to: disable the rtmedia comment action in the post until the users are become friend #41169
Hi John,
I am sorry, we are not using RT Media. So, I and my team may not be able to assist with it. I hope that someone form the community is able to help you.It should not be difficult as you can check on the $activity_type from this function.
Or, if you can tell me their activity type(is it rtm_update?), I can assist with the code.
Regards
Brajesh - Brajesh Singh on October 23, 2021 at 1:19 am in reply to: BuddyPress Group Activities Notifier – Failed to send notification with Emoji #41168This reply has been marked as private.
- Brajesh Singh on October 23, 2021 at 1:00 am in reply to: [Resolved] Issues with BP Deactivate Account #41165
Hi Khalid,
Thank you.I see, it is different issue. I was deactivating account and was referring to that. I will push a fix within 2 working days.
Regards
Brajesh Hi Christopher ,
Thank you.I am very sorry but I do not understand the correlation between the user tags and content tags. I assume these are different things. Please help me understand it a bit better.
The tag field was introduced recently and It is not yet supported in Auto Jon Groups. We will add it.
Regards
Brajesh- Brajesh Singh on October 23, 2021 at 12:55 am in reply to: [Resolved] Buddypress group is not member redirect #41163
You are welcome.
- Brajesh Singh on October 23, 2021 at 12:54 am in reply to: [Resolved] disable the comment action until the users are become friends #41161
Hi John,
Thank you.It’s a pleasure. Thank you for the kind words.
Regards
Brajesh - Brajesh Singh on October 23, 2021 at 12:53 am in reply to: BuddyPress Member Types Pro is not sending account activation email on a specifi #41160
Hi Fabricio,
Thank you for the reply.To be honest, we do not send any email. It is BuddyPress core, sending the emails.
1. Can you please confirm that the user who selects “commercial” type appears registered in your Dasboard->Users screen?
2. Also, Please check the spam email to see if there is anything(content) that might be triggering it as spam email.
Please share your findings.
Regards
Brajesh Hi John,
Thank you for the question.
Please use the following code.
/** * Removes the 'friends' sub nav from activity. */ add_action( 'bp_activity_setup_nav', function () { if ( ! bp_is_active( 'friends' ) ) { return; } bp_core_remove_subnav_item( bp_get_activity_slug(), bp_get_friends_slug() ); } ); /** * Removes 'friends' from account drop down menu in the admin bar. */ add_action( 'bp_activity_setup_admin_bar', function () { if ( ! bp_is_active( 'friends' ) ) { return; } global $wp_admin_bar; $wp_admin_bar->remove_node( 'my-account-activity-friends' ); } );Regards
Brajesh- Brajesh Singh on October 23, 2021 at 12:40 am in reply to: Problem with the feed of the activity of member #41158
Hi Alison,
Thank you for the question.You are using Divi builder which is causing it. BuddyPress is trimming the content from non parsed post content.
The simplest solution will be to apply ‘et_strip_shortcodes’ on the activity content but a better solution will be to filter on ‘bp_activity_create_summary’ and get some code suggestion from Elegant theme on what is the best way for generating excerpt.
Regards
Brajesh