Search Results for 'buddypress'
-
AuthorSearch Results
-
June 13, 2018 at 6:40 pm #274397
Venutius
ModeratorThere’s a variety of ways to achieve this, one way is to overload the BP Template profile header template file. It’s located in
plugins/buddypress/bp-templates/bp-noveau(or bp-legacy)/buddypress/members/single/cover-image-header.phpassuming you are using profile cover images.This file constructs the members header, if you copy it to
themes/your-theme/buddypress/members/single/cover-image-header.phpyou can edit it and insert a button in there.June 13, 2018 at 6:16 pm #274393In reply to: Alternate unique identifier instead of email?
kama
ParticipantI’m thinking to use Formidable Forms for the user registration, and they offer this as an option:
Don’t require a unique email#
This can be used alongside a plugin that allows multiple user accounts to be registered to the same email address. This will remove the error added to the email field for a non-unique email address. Replace 50 with the ID of your Email Address field.add_filter( 'frm_validate_field_entry', 'remove_email_error', 25, 3 ); function remove_email_error( $errors, $field, $value ) { $email_field_id = 50; if ( $field->id == $email_field_id && isset( $errors[ 'field'. $field->id ] ) && $errors['field'. $field->id] == 'This email address is already registered.' ) { unset( $errors['field'. $field->id] ); } return $errors; }So I’m just curious if this would work with Buddypress.
June 13, 2018 at 5:21 pm #274387In reply to: Buddypress, Analytics & GDPR
r-a-y
KeymasterI’m not an expert on GDPR, but what are other large sites like Twitter doing about this? Twitter’s user handle is approximately the same as BP’s username.
If you want BuddyPress to use something else for the profile URL, you can set the username in the
user_nicenameDB field and BuddyPress will use that for the user profile URL.Keep in mind that this might break whatever custom configurations you might have on your install.
If you’d rather not mess with altering the data in the user DB columns, you can also potentially filter
'bp_core_get_user_domain'and'bp_core_set_uri_globals_member_slug'.View this ticket for more info:
https://buddypress.trac.wordpress.org/ticket/6694If you wanted to use a plugin to change the profile URL to use the user ID, you can try using a plugin like this (untested):
Reminder: Always test in a development environment before deploying major changes on a live site.
June 13, 2018 at 3:49 pm #274373In reply to: problem with mentions–admin
VeeLow
ParticipantNobody? Was it TL;DR?
One sentence summary: BuddyPress provides @-mention names for my two administrator users that do not correspond to ANY actual names listed anywhere in those user profiles: how can I fix this problem?
June 13, 2018 at 12:47 pm #274371In reply to: Can’t Post in Activity Stream
Anonymous User
InactiveHi @aaronpods,
Are you really sure it’s the 2017 theme that is activated ? Because if you look at the console messages in this screencap http://smiling.wpengine.com/wp-content/uploads/2018/06/Screen-Shot-2018-06-11-at-11.32.56-AM.png the theme Divi is activated and tries to load
wp-content/themes/Divi/js/buddypress.min.jsPlease, try to flush your cache if you use a cache plugin, and activate TwentySeventeen to see if it fixes the issue.
June 13, 2018 at 7:21 am #274359In reply to: acceptance of terms and conditions
iamdev
Participantwell terms and condition plugin is working fine but i would suggested to wait for buddypress 3.2.0 to come ,if you have not updated yet for rmail related problem
June 13, 2018 at 7:13 am #274358In reply to: acceptance of terms and conditions
iamdev
Participantwhich buddypress version are you using , buddypress 3.1.0 has solved the problem
June 13, 2018 at 12:34 am #274356In reply to: confirmation emails are not sent for new users
r-a-y
KeymasterIf you’ve already tried the solutions in this thread:
Then, here are a couple of other possible solutions:
1) Remove the “Reply-To” email address from BuddyPress emails.
By default, BuddyPress adds a “Reply-To” email header to each BuddyPress email containing the admin user’s email address.
I’m guessing email senders might have problems with this because the “From” email address and the “Reply-To” email address could use different domains. Email senders might think this is spammy and would reject the email. Just a guess. You’d have to look in your email logs to confirm.
Anyway, here’s a code snippet you can try in your theme’s
functions.phpor in wp-content/bp-custom.php:add_filter( 'bp_email_set_reply_to', function( $retval, $email_address ) { // Wipe out Reply-to email header if it matches the admin email address. if ( bp_get_option( 'admin_email' ) === $email_address ) { $retval = new BP_Email_Recipient( '' ); } return $retval; }, 10, 2 );2) Try setting a different “From” email address
If you are having problems sending any email on your WordPress install, you might have to set the “From” email address to one that contains your website domain.
There are a few plugins that can do this. Here are a couple:
3) Try using a WordPress email SMTP plugin
If all the above fail, try a SMTP email plugin:
https://wordpress.org/plugins/tags/smtp/—-
Please let me know if either of the solutions work.
June 12, 2018 at 8:26 pm #274353In reply to: confirmation emails are not sent for new users
VidYen, LLC
ParticipantHi, I just noticed this as well. Was there an update on Buddypress? I don’t remember updating the plugin. Or was it something on google’s end?
I get other WP emails just fine. I thought it might be due to noreply@site.com wasn’t a valid email just not working.
I use another registration form and that sends email, but its annoying as the buddypress assigns correct role.
June 12, 2018 at 2:00 pm #274332In reply to: help registration form
Varun Dubey
Participant@despostillar2009 GDPR support for BuddyPress is in the development queue. Meantime you can try https://wordpress.org/plugins/bp-gdpr/
June 12, 2018 at 1:53 pm #274329In reply to: Member groups names in members list
Varun Dubey
Participant@octuss you will need to modify member-loop template file. You can also take the idea from
buddypress/groups/groups-loop.php to display groups for a specific member id using bp_ajax_querystringJune 12, 2018 at 12:03 pm #274325In reply to: acceptance of terms and conditions
iamdev
Participantyou can use terms and condition plugin you can even add privacy policy with little knowledge of html
June 11, 2018 at 9:51 pm #274320In reply to: Not listing all users if typing @ in activity posts
shanebp
ModeratorI think you are referring to this class
BP_Members_Suggestionsin this file:
buddypress\bp-core\classes\class-bp-members-suggestions.phpAs you can see, there is a default
limitof 10 – which explains why you only see ten suggestions.
Typically, you expect a user to type more than one letter and thereby get better matches.Fortunately for you, there is a filter hook (
bp_members_suggestions_args) in the class that you can use to set thelimitparameter to whatever you want.June 11, 2018 at 4:48 pm #274313In reply to: activation link not sent to user email address
balebond
ParticipantWell… interesting. Not sure if I’m going crazy but after inserting that record and then one last try at Tools > Buddypress > Reinstall Emails– activation emails seems to be working now.
Not exactly sure why it works now but just happy it’s working.
June 11, 2018 at 4:31 pm #274312In reply to: activation link not sent to user email address
balebond
ParticipantSame issue. Driving me nuts. I started with 3.0.9 and had issue. I deleted plugin and re-installed 3.1.0 and tried Tools > Buddypress > Reinstall Emails. Still no registration email in list.
I installed Buddypress 3.1.0 fresh to a new install and I see it.
I’ve even gone so far as to take the record from wp_post from that instance and installed on broken site but php is expecting something different (getting some errors on admin page for BP emails) But the record looks legit compared to other bp email records.
I think this is still a bug for anyone who started with 3.0.9. Any Ideas so that I don’t lose all my groups / comments/ etc.?
June 11, 2018 at 3:40 pm #274310In reply to: activation link not sent to user email address
Paul
ParticipantTry Activation email problems here
June 11, 2018 at 10:42 am #274305In reply to: Private Messaging within Groups
Varun Dubey
Participant@optimized Private messaging is available at the individual level, you can use https://wordpress.org/plugins/mass-messaging-in-buddypress/ to send a message to all group members or extend the same
June 10, 2018 at 10:52 pm #274287balebond
ParticipantDoes this fix still work for you? My buddypress registration emails still don’t go out but the Post SMTP test emails do.
June 10, 2018 at 6:01 pm #274283In reply to: Nouveau leaves html tag in groups description
shanebp
ModeratorJune 10, 2018 at 2:30 pm #274278In reply to: Disable Activity streams, keep mentions for BBPress
jameshogan03
Participant@tech55541 would you mind sharing your knowledge with a newbie? I am running buddypress/bbpress and bbpress still haven’t added auto-suggestions (although they work fine in buddypress forms).
Should I add your code to my bp-custom.php? I get a ‘Fatal Error’ when I run it through a php-checker.
Would you lend me some advice about using this code you’ve kindly shared??
June 10, 2018 at 11:20 am #274272In reply to: Advice on BuddyPress + bbPress
Evil Overlord
ParticipantThanks. I looked at Auto Group Join, and am considering it. Registration Groups hasn’t been updated in a long time, so I’m a bit leery of that. I’ve also tried bbPress Private Groups, but I’m finding forum accessibility to be oddly inconsistent.
At the moment, I’m looking at:
1. Just BuddyPress – create lots of overlapping single-purpose groups.
2. Just bbPress & Private Groups – forget about the social aspect and just use structured fora.
3. Social media – give up and use a Google Group, Google+ community, or even [gulp] a Facebook group.June 9, 2018 at 9:46 pm #274270balebond
ParticipantJust a follow up. I got the method from this link to work and it hides the “whats new” form from non-admins on the group page.
However, now I notice that users still get the group in their “Post in:” list on their personal activity page and can circumvent. So, trying to figure this part out next.
Anyone know how to restrict that dropdown?
June 9, 2018 at 7:37 pm #274268In reply to: Problems with the Buddypress version 3.0 and upwards
r-a-y
KeymasterRegarding registration, read the first two issues in this thread:
And see if it applies to you.
The settings bug sounds like it is theme-related:
June 9, 2018 at 7:35 pm #274267In reply to: Users can’t register and they don’t show up
r-a-y
KeymasterI then deleted the register page, created a new one, saved my permalinks…and it was working about a month ago when I tested it, but I just got an email yesterday from someone who had the activation link error ????
What is the “activation link error”?
Sounds like this isn’t related to the ticket that Venutius linked to on Trac.
Read through the first two issues of the following link and see if it sounds like your problem, particularly the second one:
June 9, 2018 at 11:13 am #274262Topic: Best practise SEO setup for BP
in forum How-to & TroubleshootingEric
ParticipantHi,
im wondering what´s currently the best practise SEO setup/solution for BP3.x
if my information is correct, for example, Yoast SEO still does not cover BP related pages and features like the activity stream, profile pages and groups, correct?in the past i used some mods based on
Making WordPress SEO plugin compatible with BuddyPress Part 2
but i am not sure if this is still state of the art.i really like Yoast SEO and use it for my members blogs as default but whats the best solution for BP, are there any new mods or plugins available?
tnx, Eric
-
AuthorSearch Results