Search Results for 'buddypress'
-
AuthorSearch Results
-
June 14, 2018 at 12:50 pm #274429
In reply to: How to perform user search with ‘OR’?
Varun Dubey
ParticipantJune 14, 2018 at 9:08 am #274422In reply to: Can’t Post in Activity Stream
Anonymous User
Inactive@aaronpods no problems.
Have you deactivated all plugins/bp-custom.php/mu-plugins/ except BuddyPress ?
I think there’s something preventing the regular Nouveau JavaScripts to load. As the post form needs it to be displayed because it uses BackBone.JS views, it’s the reason. The other script/plugin is only conflicting with the activity directory, as i’ve checked your profile, the Nouveau JavaScript are loading.
June 14, 2018 at 8:46 am #274421In reply to: checkout page: required field
meestergijs
ParticipantSolved. I had to tick the option: Sync BuddyPress signup email address with WooCommerce billing email address in the WC4BP plugin..
June 13, 2018 at 7:33 pm #274407ahad77
Participantmy bp them is sweetdate
The selected Template Pack will serve all BuddyPress templates running buddypress NouveauJune 13, 2018 at 7:23 pm #274406Venutius
ModeratorMight be wise to confirm with you which bp theme you have in dashboard>>settings>>buddypress>>options ? are you running Nouveau?
June 13, 2018 at 6:50 pm #274398ahad77
ParticipantDear @venutius thanks your reply
I did your suggestion but it did not work, my wordpress is 4.9.6 and buddypress is 3.1.0June 13, 2018 at 6:40 pm #274397Venutius
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
Moderator -
AuthorSearch Results