Search Results for 'buddypress'
-
Search Results
-
Hello,
I’ve searched the internet and this forum in particular for a couple of hours but could not find a proper workaround for this issue:
As you know, BuddyPress setup works by creating two blank pages – members and groups. If I type in a meta description in Yoast for both and preview the pages, the description text is added to the page header and gets properly displayed in the page source text.
But as soon as I assign the two pages to the BuddyPress plugin, the description gets stripped completely. In the page source appears an author note that a description needs to be added.
I could live with that, but I urgently need to make my members page and all its related members profile content invisible to search engines. The severe problem is, that the Yoast settings „noindex, nofollow“ are stripped too.
The BBpress Forum page is not affected by this issue. Yoast can apply a meta description and the „noindex, nofollow“ command, which is a good thing.
Can someone please help me out with a solution?
Thanks in advance,
MartinI saw in a post/discussion from 2 years ago that BuddyPress was being enhanced to meet WCAG 2.0 requirements. I am wondering if it is still compliant. We are using it and need to ensure it is WCAG compliant. Do I need to go through an entire WCAG evaluation of all the page templates or do I just need to focus on our content and CSS code.
Topic: No Activation Emails
So I’m having an issue where all emails except the registration email are going out from Buddypress. I’ve been digging through thread after thread looking for a solution with no dice. I have the latest version of buddypress installed as well WP Mail SMTP plugin installed configured appropriately with mailgun. Test emails work, password reset works etc. I’ve tried making a new template as well.
If someone could assist I would appreciate it,
thank you, SophiaTopic: AJAX Request Spinner
Hello,
I’m trying to add a spinner gif to the webpage whenever someone clicks a button that uses AJAX to show them that their request is being worked on. I wish to use the Nouveau theme.
I’m running WordPress 5.1 and BuddyPress 4.2.0
There hasn’t been much on this topic except for here (which is now 4.75yrs old): Feature Request AJAX Loading Spinner
To start, I’m trying to get things to work with the messaging section.
I added
<img class='ajax-gif' src='http://localhost:8080/WEBSITE/wp-content/themes/THEME/classicloader30px.gif'/>to a file I made in my theme file for the messages template:
wp-content/themes/THEME/buddypress/common/js-templates/messages/index.phpIt was added underneath each input type=button and input type=submit.
Next I added this css:
.ajax-gif{ display:none; } .loading + .ajax-gif, .loading > .ajax-gif{ display:block; }My only problem now is that these buttons do not apply the “loading” class to the buttons anymore (like they do in Legacy).
I found that you can add and remove the classes during the function that is triggered on the click by going to /wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-messages.js.
Unfortunately, I don’t believe this is a file meant to be able to be changed in custom files.I added:
$('#bp-messages-send').addClass('loading');to sendMessage: function(),
$( '#send_reply_button' ).addClass( 'loading' );to sendReply: function(),
and$( '#send_reply_button' ).removeClass( 'loading' );to replySent and replyError.Any help in figuring out how to make this not be lost on a new BuddyPress update would be extremely helpful.
I’m also trying to figure out how to target any other BuddyPress AJAX events. I’m sure I can do the same thing with the Members Directory, but will probably need to do the same thing with figuring out what function is called when someone requests a friendship/cancel a friendship etc.
Topic: Restricting private messages
I am looking for some help with restricting private messages.
I have Paid Memberships Pro – BuddyPress Add On Version 1.2.1 and BP Better Messages (Premium) Version 1.9.7.9 with WordPress 5.1
BuddyPress Version 4.2.0I am looking for a way to restrict the private message option for certain type of users. I am trying to have this modification multiple ways, with and without PMPro but none of them working so far.
With PMPro I supposed to restrict easily, still I can only totally restrict all BuddyPress functions or enable all of them, customization looks like broken.
I looked into the codes of all the mentioned plugins, tried to restrict access by using below code that I found in another topic:
add_filter( 'bp_get_send_message_button', function( $array ) { if ( pmpro_hasMembershipLevel('Premium') ) { return $array; } else { return ''; } } );Maybe I am just trying to make it too complicated and there is an easier way to do it with shortcodes under the Members page that currently contains only [bps_directory] shortcode.
Any suggestion and help would be welcome.
Hello. For the last few hours, I have been trying to achieve two things simultaneously:
1) I want the directory to show all users, even ones who haven’t logged in for the first time.
2) I want the directory to sort alphabetically by default.To solve the first problem, I have implemented the solution here: https://buddypress.org/support/topic/members-not-showing-4/
When I select “Alphabetical” from the sort dropdown, it only displays users who have filled in their profile.
I tried implementing this solution and while it does sort alphabetically on default, it shows the same list as above: https://buddypress.org/support/topic/sort-user-list-by-last-name/
How can I create a directory that displays all users, including new ones who haven’t logged in yet, and sort alphabetically at the same time?
Thanks!