Replies
- Brajesh Singh on June 23, 2022 at 6:10 pm in reply to: [Resolved] BuddyPress Auto Activate Auto Login Doesn’t work #45483
Hi Hoang,
Thank you for purchasing from us.From the screenshot, I am not sure which theme or plugin you are using for that popup registration.
If you can provide the details, we can look into it and make compatible(depends on the popup code too if they allow us hooking or not).
If the plugin/theme is not free, we will need access to a copy of it to support it.
If you are not comfortable with the above, Please let me know and we will issue the refund.
Thank you
Brajesh - Brajesh Singh on June 22, 2022 at 10:01 am in reply to: [Resolved] BuddyPress group Tabs Creator Pro – The Events Calendar #45472
Hi Quint,
Thank you.That is expected behaviour. in case of groups, if there is only sub tab, we hide the sub tab navigation and simply show the content.
Do you want to change this behaviour?
Regards
Brajesh - Brajesh Singh on June 22, 2022 at 6:31 am in reply to: [Resolved] BuddyPress group Tabs Creator Pro – The Events Calendar #45468
Hi Quint,
Thank you for the patience.The issue was the default sub tab was not active. Please edit the group tab and put your own content in place of the temporary placeholder I have put there.
Please let me know if it works for you or not?
Thank you
Brajesh - Brajesh Singh on June 22, 2022 at 6:06 am in reply to: [Resolved] BuddyPress group Tabs Creator Pro – The Events Calendar #45467
Hi Quint,
Thank you for the reply.I am looking at it now. It is probably due to empty slug. I will update you in 1 hour.
Regards
Brajesh Hi Michael,
Thank you for the question.You may use the token ‘[displayed-username]’ in part of the link url. It will be replaced by the displayed user’s username.
We don’t have anything similar available for group though.
PS:- Please open a new topic to help us assist you better.
Regards
Brajesh- Brajesh Singh on June 21, 2022 at 11:06 pm in reply to: [Resolved] Strange behaviour in empty post form #45463
- This reply has been marked as private.
Hi Tim,
Thank you for the reply.I am sorry, I am not sure of the issue.
Here is a fix that should show the badges above your social media
add_action( 'bp_before_member_header_meta', function () { if ( ! function_exists( 'bp_user_badges_get_user_badges_html' ) ) { return; } echo bp_user_badges_get_user_badges_html( bp_displayed_user_id() ); }, 0 );Can you please add this to your functions.php and let me know.
PS:- Is there any chance that you have the badges disabled on profile. Before using this code, Please visit Dashboard->settings->Badge Settings and make sure that the “User Profile” is enabled.
Regards
BrajeshHi John,
Thank you for the reply.I am sorry, I did not see any icon with the Gwangi theme activity screen. I found it after activating their Grimlock for BuddyPress plugin now.
Please use this snippet
// Use 'i' instead of Report for Moderation tools. add_filter( 'bpmts_report_button_args', function ( $args ) { $args['label'] = ' '; return $args; } );I request my team to test MediaPress with Gwangi and see if we can assist you.
Regards
Brajesh- This reply was modified 3 years, 7 months ago by
Brajesh Singh. Reason: updated
- This reply was modified 3 years, 7 months ago by
- Brajesh Singh on June 18, 2022 at 12:20 am in reply to: [Resolved] Allow group activity only disable non group activity #45429
Hi,
You my try this./** * Start buffering markup. * Keep a flag to discard it later. */ function bd_custom_start_bp_nouveau_form_buffer() { $GLOBALS['_bd_form_buffer_on'] = true; ob_start(); } //end buffering and discard. function bd_custom_end_bp_nouveau_form_buffer() { if ( isset( $GLOBALS['_bd_form_buffer_on'] ) ) { ob_end_clean(); } } add_action( 'bp_before_member_activity_post_form', 'bd_custom_start_bp_nouveau_form_buffer' ); //add_action( 'bp_after_member_activity_post_form', 'bd_custom_end_form_buffer' ); add_action( 'bp_before_directory_activity_content', 'bd_custom_start_bp_nouveau_form_buffer' ); add_action( 'bp_after_activity_post_form', 'bd_custom_end_bp_nouveau_form_buffer' );This is for bp nouveau template pack. I do not use BuddyX and I am unable to confirm if it works with that theme or not.
If it does not, Please consult the theme author.
Regards
Brajesh