Replies
- Brajesh Singh on September 13, 2022 at 8:27 am in reply to: [Resolved] Branded login 403 forbidden error #46482
Please share the shortcode being used for login.
Also, are you using another plugin/code to allow login from any page as Branded login only works for the assigned login page.Regards
Brajesh - Brajesh Singh on September 13, 2022 at 8:01 am in reply to: [Resolved] BuddyBlog Pro Media Uploader and Article Images #46479
Hi Cristi,
Thank you for the patience.Please put this in your theme’s functions.php or (wp-content/plugins/bp-custom.php)
add_filter( 'bblpro_disable_author_media_listing', '__return_true' );When we release BuddyBlog Pro 1.3.0, the plugin will not list any media to the author other than what they upload on the current post if this filter is enabled.
Regards
Brajesh - Brajesh Singh on September 12, 2022 at 10:18 am in reply to: [Resolved] Hide header on Settings, Visits, Activity and Notifications pages #46470
Hi Carsten,
Thank you. If you are using Nouveau, then there are 2 way to do it.1. Using hooks( to use output buffer an discard but it is not reliable for future changes)
2. Editing template file, we are going to use it.Please copy wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/home.php to your-child-theme/buddypress/members/single/home.php
Now, Please look for these lines at the top
<div id="item-header" role="complementary" data-bp-item-id="<?php echo esc_attr( bp_displayed_user_id() ); ?>" data-bp-item-component="members" class="users-header single-headers"> <?php bp_nouveau_member_header_template_part(); ?> </div><!-- #item-header -->and change it to
<?php if ( ! in_array( bp_current_component(), array( 'activity', 'notifications', 'messages', 'settings' ) ) ) : ?> <div id="item-header" role="complementary" data-bp-item-id="<?php echo esc_attr( bp_displayed_user_id() ); ?>" data-bp-item-component="members" class="users-header single-headers"> <?php bp_nouveau_member_header_template_part(); ?> </div><!-- #item-header --> <?php endif; ?>Please feel free to update the slug list with any component you want to hide.
Regards
Brajesh - Brajesh Singh on September 12, 2022 at 10:07 am in reply to: The BP Menus PERSONAL MENTIONS FAVOURITES FRIENDS GROUPS #46468
Hi Daniel,
Thank you for the reply.
That would be very strange if the plugin did that. I will check the code and get back to you in couple of hours.
Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on September 12, 2022 at 9:56 am in reply to: Issue to download premium plugins…. #46466
Hi,
Welcome back.You have an active subscription and you should be able to download all plugins from your subscriptions.
Since BuddyBoss keeps adding/removing certain features, we do add/remove some plugins from that specific package(BuddyBoss Max) to make sure the plugins remain useful.
It seems we have dropped the support for BuddyBoss in these 2 plugins(and addition Editable Activity plugin) as BuddyBoss added their own similar features in BuddyBoss Platform Pro.
If you still need to use it, please reply here and I will share the links to download it.
Regards
Brajesh - Brajesh Singh on September 12, 2022 at 9:53 am in reply to: Change Default Activity Stream Tab #46465
Hi John,
Welcome to Buddydev support forums. Are you using Legacy template pack? The above code was for legacy template pack.Please let me know and I will assist.
Regards
Brajesh Hi Tosin,
I am glad you found it.If you ever find anything like this again, the cause is always some caching or cache busting plugin.
Regards
Brajesh- Brajesh Singh on September 12, 2022 at 9:50 am in reply to: [Resolved] restrict access to a profile field by a membership plugin? #46463
You are welcome.
- Brajesh Singh on September 12, 2022 at 9:46 am in reply to: [Resolved] Hide header on Settings, Visits, Activity and Notifications pages #46462
Hi Carsten,
If you want to use php code for removing, you will need to override buddypress/members/single/home.php as there is no hook to disallow loading (while using default BuddyPress template packs).
If you are comfortable with it, Please let me know which template pack are you using(I believe you were using legacy earlier) and I will share the snippet.
Regards
Brajesh