Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,351 through 6,375 (of 68,948 total)
  • Author
    Search Results
  • #274429
    Varun Dubey
    Participant
    #274422
    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.

    Screencap

    #274421
    meestergijs
    Participant

    Solved. I had to tick the option: Sync BuddyPress signup email address with WooCommerce billing email address in the WC4BP plugin..

    ahad77
    Participant

    my bp them is sweetdate
    The selected Template Pack will serve all BuddyPress templates running buddypress Nouveau

    Venutius
    Moderator

    Might be wise to confirm with you which bp theme you have in dashboard>>settings>>buddypress>>options ? are you running Nouveau?

    ahad77
    Participant

    Dear @venutius thanks your reply
    I did your suggestion but it did not work, my wordpress is 4.9.6 and buddypress is 3.1.0

    Venutius
    Moderator

    There’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.php assuming 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.php you can edit it and insert a button in there.

    #274393
    kama
    Participant

    I’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.

    #274387
    r-a-y
    Keymaster

    I’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_nicename DB 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/6694

    If 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):

    LH Number User Nicename

    Reminder: Always test in a development environment before deploying major changes on a live site.

    #274373
    VeeLow
    Participant

    Nobody? 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?

    #274371
    Anonymous User
    Inactive

    Hi @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.js

    Please, try to flush your cache if you use a cache plugin, and activate TwentySeventeen to see if it fixes the issue.

    #274359
    iamdev
    Participant

    well 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

    #274358
    iamdev
    Participant

    which buddypress version are you using , buddypress 3.1.0 has solved the problem

    #274356
    r-a-y
    Keymaster

    If you’ve already tried the solutions in this thread:

    BuddyPress 3.1.0 is now available!

    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.php or 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:

    Change From Email

    WP Change Default From Email

    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.

    #274353
    VidYen, LLC
    Participant

    Hi, 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.

    #274332

    In 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/

    #274329
    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_querystring

    #274325
    iamdev
    Participant

    you can use terms and condition plugin you can even add privacy policy with little knowledge of html

    #274320
    shanebp
    Moderator

    I think you are referring to this class BP_Members_Suggestions in this file:
    buddypress\bp-core\classes\class-bp-members-suggestions.php

    As you can see, there is a default limit of 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 the limit parameter to whatever you want.

    #274313
    balebond
    Participant

    Well… 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.

    #274312
    balebond
    Participant

    Same 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.?

    #274310
    Paul
    Participant

    Try Activation email problems here

    BuddyPress 3.1.0 is now available!

    #274305
    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

    balebond
    Participant

    Does this fix still work for you? My buddypress registration emails still don’t go out but the Post SMTP test emails do.

    #274283
    shanebp
    Moderator
Viewing 25 results - 6,351 through 6,375 (of 68,948 total)
Skip to toolbar