-
David Cavins replied to the topic Add custom taxonomy to member loop in the forum Creating & Extending 6 years, 9 months ago
Hello, you can add information to output to this hook:
add_filter( 'bp_nouveau_get_member_meta', function( $meta, $member, $is_loop ){
// is_loop is true in the members directory
if ( $is_loop ) {
// Taxonomy fetching code goes here...$member->ID is the member ID.// Then assemble the output.
$meta['taxonomy_item'] = "taxonomy item " .…[Read more] -
David Cavins replied to the topic Admin notification for all activity in the forum How-to & Troubleshooting 6 years, 9 months ago
The content of the activity item would be
$activity_array['content']. You can see the action that Venutius was using here: https://buddypress.trac.wordpress.org/browser/tags/5.0.0/src/bp-activity/bp-activity-functions.php#L1931So you’d just add something like
$message .= "$activity_array['content']";
to the code posted… -
David Cavins replied to the topic Moderate activities with "pending" mode status in the forum How-to & Troubleshooting 6 years, 9 months ago
Hi @rezocom–
That’s a pretty complicated request. I’ve used a plugin that adds a “spam” action link to activity posts, but doesn’t have an approval workflow:
https://github.com/francescolaffi/BP-Moderation -
David Cavins replied to the topic Hide username in messages in the forum Installing BuddyPress 6 years, 9 months ago
That’s funny, someone else is trying to do something similar: https://buddypress.org/support/topic/the-username-i-wanted-to-hide-is-seen-in-the-messaging/
As I note in that other thread, it’s going to be hard to hide the username since it’s fundamental to BP messaging and mentions. Sorry, I can’t think of any straighforward way to change that behavior.
-
David Cavins replied to the topic Error Message after purchase in the forum How-to & Troubleshooting 6 years, 9 months ago
Your problem appears to be that a plugin called Learndash is trying to use a function
groups_is_user_member()before that function is defined, or maybe you are not using the BuddyPress Groups component, then it will not be defined. You’ll beed to explain the issue to the Learndash plugin authors so they can check for the function to exist before…[Read more] -
David Cavins replied to the topic The username I wanted to hide is seen in the messaging in the forum How-to & Troubleshooting 6 years, 9 months ago
Hi @visitatore–
The username is used extensively through BuddyPress, so I don’t know how it can be kept a secret. (For instance, it’s used for the user’s profile page url at
/members/{username}.)I don’t think you can hide the username entirely, since the BP messaging and mention system is built on the username, but you could probably change out…[Read more]
-
David Cavins replied to the topic Rename Group Nav Not Working in the forum How-to & Troubleshooting 6 years, 9 months ago
On what hook are you firing that function? Are you using the Legacy or Nouveau template pack? (Have you changed from the Legacy to Nouveau template pack recently?)
It could be a number of things, but my first thought is that there’s no reason to be changing the groups nav when you’re in the middle of the create routine, so maybe there’s a more…[Read more]
-
David Cavins replied to the topic Displayed user user-nicename in profile activity tab name in the forum How-to & Troubleshooting 6 years, 9 months ago
That’s pretty old code you’ve found. We have a new API for that:
The example “Changing the name of the Unread subnav item of the user’s Notifications nav menu” is pretty close to what you’re looking for. If you want to add the displayed user’s display name, this is close:
function b…[Read more] -
David Cavins replied to the topic Members Slug Redirects to Home in the forum How-to & Troubleshooting 6 years, 9 months ago
Can you say what the update was? Was it a BuddyPress update or a WordPress update (or some other plugin), or do you know?
Thanks!
-
David Cavins replied to the topic Filtering member directory in the forum How-to & Troubleshooting 6 years, 9 months ago
You might look at using Member Types to organize your members: https://codex.buddypress.org/developer/member-types/
-
David Cavins replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 6 years, 9 months ago
Great, thanks for the update!
-
David Cavins replied to the topic How can I remove margin and padding from buddypress activity stream list in the forum Creating & Extending 6 years, 9 months ago
That really depends on your theme. You can use your browser’s inspector to see what CSS rules are causing the layout, then override them by adding custom rules to your site via the customizer or by using a child theme.
Firefox’s inspector How to: https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector
-
David Cavins replied to the topic Activation email blocked by Mailjet in the forum How-to & Troubleshooting 6 years, 9 months ago
Various email services filter for spam in different ways, and it can be a real trick to get the activation mail to be delivered. I’ve had good luck using an API mailer like SendGrid or similar, where you can set up all the extra email supporting stuff like DKIM and SPF. Several of the popular API mailers have WP plugins, so that’s one way you can…[Read more]
-
David Cavins replied to the topic Loop redirection (infinite) in the forum How-to & Troubleshooting 6 years, 9 months ago
I suspect the problem is with your modal-based login. Try TwentyNineteen temporarily to see if the issue persists.
It sounds like you may have to disable the BP no access redirect with your theme.
-
David Cavins replied to the topic BuddyPress – Profile Field – Open Link in New Window in the forum How-to & Troubleshooting 6 years, 9 months ago
Well, you’ll have to be sure that the “Profile Field URL” field has the id of 6 on your installation. On your site, visit the Profile Fields admin at Wp Admin > Users > Profile Fields (
/wp-admin/users.php?page=bp-profile-setup) and hover over the “Edit” button for the field you want to affect. The link will look something like/wp-admin/users.php?p…[Read more] -
David Cavins replied to the topic Public Vulnerability notification – false alarm? in the forum Miscellaneous 6 years, 9 months ago
Hi, feel free to look at the source code where BP calls PHPMailer:
https://github.com/buddypress/BuddyPress/blob/5.0.0/src/bp-core/classes/class-bp-phpmailer.php#L19As you can see, unless you are using a plugin that is injecting an older version of PHPMailer on the
bp_phpmailer_objectfilter, BP is using the PHPMailer class included in the WP…[Read more] -
David Cavins replied to the topic Activity stream not loading initially in the forum Requests & Feedback 6 years, 9 months ago
HI @discovered96–
That’s interesting. With the Legacy template, the activity stream is built and served as part of the page, so it sounds like a theme display issue. Can you try your site with a basic theme like TwentyNineteen to see if the issue persists?
-
David Cavins replied to the topic How to: Distinguish Woocommerce costumers and BuddyPress members? in the forum How-to & Troubleshooting 6 years, 9 months ago
Hi @cviniusj-
It sounds like you are wanting user who register via WooCommerce to appear as members on the members directory in BP. What you’ll have to do is add a
last_activitymeta item for those users when they register, so that BP will include them in user queries. I’m not knowedgable about Woo, but something like this might…[Read more] -
David Cavins replied to the topic I have a bit of a conundrum I'm trying to solve, can you help? in the forum How-to & Troubleshooting 6 years, 9 months ago
Hi @tsurf–
That sounds like a big project. You’ll need to work with a knowledgable developer (or become one yourself) to solve it.
-
David Cavins replied to the topic Send Email reminder to user when user is not responded friendship request in the forum Installing BuddyPress 6 years, 9 months ago
Hi @mon2-
You’d have to write some custom code to add that functionality. (That’s beyond the scope of the support forum.) I’m guessing that you could add a WP Cron job that fetches old friendship requests and send the notifications again, but it would take some work on your part. You can see how the initial request email is sent…[Read more]
- Load More
@dcavins
Active 1 week, 3 days ago