Replies
- Brajesh Singh on May 30, 2021 at 3:14 pm in reply to: Add "send private message" button to members directory to non logged in users #38891
Hi,
Thank you for the question.BuddyPres can not handle message form non logged users. You may want to take a look at this plugin
https://buddydev.com/plugins/buddypress-user-contact-form/It may be able to handle the use case.
Regards
Brajesh Hi Nifty,
Thank you for the question.You can filter on the total member count and update the count.
Here is an example showing that we remove 4 from the count.add_filter( 'bp_get_total_member_count', function ( $count ) { // return updated count. return $count - 4; // decrease by 4 or so. } );Regards
Brajesh- Brajesh Singh on May 30, 2021 at 3:12 pm in reply to: [Resolved] Add new subtab on edit profile screen after all field groups #38889
Hi Nitin,
Welcome back.Adding tab is not difficult but showing the form is not that simple. You can add a tabg with this code(or modify it to point to some other url)
add_filter( 'xprofile_filter_profile_group_tabs', function ( $tabs, $groups, $group_name ) { $link = '#'; // use your link. $label = 'My Tab'; // Add tab to end of tabs array. $tabs[] = sprintf( '<li><a href="%1$s">%2$s</a></li>', esc_url( $link ), $label ); return $tabs; }, 20, 3 );I will suggest using a page url in the link and put your form their to make ti simple.
Regards
Brajesh - Brajesh Singh on May 30, 2021 at 3:09 pm in reply to: [Resolved] Counter displaying pending friends requests instead #38888
Hi Carsten,
Thank you for the suggestion. I am afraid there is no hook to allow this currently without having side effect.Regards
Brajesh - Brajesh Singh on May 30, 2021 at 3:08 pm in reply to: Problem with BuddyPress Friends Suggestions Pro #38887
Hi Sandra,
Thank you for the patience.I have seen the issue. It seems it is not working with the multiselect field on the site. Please allow me to test and push an update by Tuesday.
Regards
Brajesh - Brajesh Singh on May 27, 2021 at 5:33 pm in reply to: [Resolved] Little loading image not in main activity box #38874
Hi Lisa,
Thank you for letting me know. I tested on Ubuntu and Chrome browser.I will ask one of my colleagues to test it on chrome on Mac and report tomorrow(it’s off time for them here now).
Regards
Brajesh - Brajesh Singh on May 27, 2021 at 5:08 pm in reply to: toggle the visibility of login/register buttons in header #38871
Hi Sotiris,
Thank you.The simplest solution will be using css. If you know the ID of the login page( I am assuming 5 here for example, Please change).
Then, you can add the following css
.page-id-5 .site-header-login-link { display:none; }Regards
Brajesh - Brajesh Singh on May 27, 2021 at 4:58 pm in reply to: Page you requested was not found when I click on photo from gallery. #38870
Hi Lakia,
Thank you for using MediaPress.Please visit Dashboard->MediaPress->Settings and make sure that the types are enabled. After doing that, Please visit MediaPress->Settings->Members Gallery and make sure that the needed types are enabled.
Please let me know if that makes it work or not?
Regards
Brajesh - Brajesh Singh on May 27, 2021 at 4:54 pm in reply to: [Resolved] Little loading image not in main activity box #38869
Hi Lisa,
I have checked it.Are you referring to the green color bar that appears as progress? It is working fine for me in both the comments as well as the Post.
Please recheck after clearing any browser cache.
Regards
Brajesh - Brajesh Singh on May 27, 2021 at 8:44 am in reply to: toggle the visibility of login/register buttons in header #38856
Hi Sotiris,
Thank you for the question.Is it for Community Builder theme? Please let me know and I will assist.
Regards
Brajesh