Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,376 through 6,400 (of 68,969 total)
  • Author
    Search Results
  • 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
    #274278
    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??

    #274272
    Evil Overlord
    Participant

    Thanks. 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.

    balebond
    Participant

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

    #274268
    r-a-y
    Keymaster

    Regarding registration, read the first two issues in this thread:

    BuddyPress 3.1.0 is now available!

    And see if it applies to you.

    The settings bug sounds like it is theme-related:

    Settings on profile not showing

    #274267
    r-a-y
    Keymaster

    I 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:

    BuddyPress 3.1.0 is now available!

    #274262
    Eric
    Participant

    Hi,

    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

Viewing 25 results - 6,376 through 6,400 (of 68,969 total)
Skip to toolbar