-
David Cavins replied to the topic Activation email blocked by Mailjet in the forum How-to & Troubleshooting 5 years, 5 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 5 years, 5 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 5 years, 5 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 5 years, 5 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_object
filter, 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 5 years, 5 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 5 years, 5 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_activity
meta 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 5 years, 5 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 5 years, 5 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]
-
David Cavins replied to the topic Activity stream not loading initially in the forum Requests & Feedback 5 years, 5 months ago
Are you using the Legacy or Nouveau template set? If you are using Nouveau, the activity items are loaded via AJAX, so there could be a delay if your server doesn’t respond quickly to the AJAX request, but there should be a box that says “loading the activity items or similar”.
Please also test this problem with a basic theme like TwentyNineteen,…[Read more]
-
David Cavins replied to the topic Recover member counters in the forum How-to & Troubleshooting 5 years, 5 months ago
Have you already tried the BuddyPress repair tools? They’re in your WP-admin dashboard > Tools > BuddyPress (at /wp-admin/tools.php?page=bp-tools).
-
David Cavins replied to the topic not able to list posts in the forum How-to & Troubleshooting 5 years, 5 months ago
Hi @chrix22–
I don’t think that that is a core BuddyPress screen. Are you adding it via a plugin or the theme you’ve chosen? If so, you’ll need to seek support there.
-
David Cavins replied to the topic Public Vulnerability notification – false alarm? in the forum Miscellaneous 5 years, 5 months ago
Appears to be a false alarm.
We are using the PHPMailer class that is included in WordPress. In WP latest stable release (5.2.4) the version of PHPMailer is 5.2.22 and in 5.3 it’s 5.2.27. The problematic PHPMailer versions are < 5.2.20.
-
David Cavins replied to the topic Post button disappeared in the forum How-to & Troubleshooting 5 years, 5 months ago
If anyone has come up with the CSS rule to solve this issue, please share it for other forum users. Thanks!
-
David Cavins replied to the topic Private messages not sending in the forum How-to & Troubleshooting 5 years, 5 months ago
Thanks for managing this ticket!
-
David Cavins replied to the topic Private message in the forum How-to & Troubleshooting 5 years, 5 months ago
Thanks for the update!
-
David Cavins replied to the topic Problem with register in Buddypress in the forum Requests & Feedback 5 years, 5 months ago
Can you enable debugging and see what php error is being thrown?
When you see the message
“The site is experiencing technical difficulties.”
, it means that there has been an error thrown, and you’ll need to know what is going wrong where to resolve your issue.Please let us know wha…[Read more]
-
David Cavins replied to the topic Loop redirection (infinite) in the forum How-to & Troubleshooting 5 years, 5 months ago
What should happen is that the user is bounced to
wp-login.php
with the “return_to” address set to the page they were trying to reach.Do you have any other plugins that are managing the login form or handling redirects more generally?
-
David Cavins replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 5 months ago
Note that you will have to have “Enable BuddyPress to WordPress profile syncing” checked in order for the function I provided to work.
Also, “WP offers the ability to set the display_name to any of the other names (nickname, first name last name, username, and more)”, yes that’s true, but when your preference is saved, the value you chose is c…[Read more]
-
David Cavins replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 5 months ago
Sorry, it’s not the BP nickname field. That’s actually a WP user meta field.
Other things that appear to be true:
• BP uses WP’s “Display Name” to label the user in activity items and elsewhere.
• WP’s ‘nickname’ meta is required but not used widely?So it seems like the key field for display in BP, bbPress and WP is WP’s “display name” field…[Read more]
-
David Cavins replied to the topic Losing first and last name fields in the forum How-to & Troubleshooting 5 years, 5 months ago
Hi Tom-
It sounds like you have a lot of balls in the air. For instance:
Remember, I have removed the original xprofile_sync function.
Honestly, I can’t know enough about your setup to tell you anything for sure. What I can tell you is this:
• bbPress uses WordPress’s “Display Name” field, not a BuddyPress field.
• BuddyPress only updates the…[Read more] - Load More
@dcavins
Active 2 days, 7 hours ago