Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,026 through 7,050 (of 69,106 total)
  • Author
    Search Results
  • #271986

    In reply to: Assign Members Page

    baccoeur
    Participant

    Hi

    Thank you for your response

    I just follow and check the instruction you give.

    Try deactivating all other plugins, this is most likely a plugin conflict I would think.

    Still issue exist
    I have done deactivating all plugins in the site but still doesn’t save the member page.
    http://prntscr.com/j3m4oz

    The following active BuddyPress Components do not have associated WordPress Pages: Members. Repair

    Please advice.

    Thank you!

    #271984
    josh.grisdale
    Participant

    Any emails sent via BuddyPress like new messages from users etc

    Jonas
    Participant

    There’s different ways of solving it, you can look to this old post for some pointers.

    or you could do something like this

    <?php
    function opengraph_tags() {
        // defaults
        $title = get_bloginfo('title');
        $excerpt = get_bloginfo('description');
    
        if( bp_current_component() ) {
            global $post;
            setup_postdata( $post);
            $title = get_the_title();
            $excerpt = get_the_excerpt();
            if ($excerpt) {
                $excerpt = strip_tags($excerpt);
                $excerpt = str_replace("", "'", $excerpt);
            }
        } ?>
            
        <meta name="description" content="<?php echo $excerpt; ?>"/> <!-- general meta tag -->
        <meta property="og:title" content="<?php echo $title; ?>"/> <!-- facebook meta tag -->
        <meta property="og:description" content="<?php echo $excerpt; ?>"/> <!-- facebook meta tag -->
        <meta name="twitter:title" content="<?php echo $title; ?>"> <!-- twitter meta tag -->
        <meta name="twitter:description" content="<?php echo $excerpt; ?>"> <!-- twitter meta tag -->
    
    <?php }
    add_action('wp_head', 'opengraph_tags', 5);

    You’d then be able to write the description of the buddypress page in the excerpt input while editing whatever Buddypress page. This only solves the main pages though.

    If you’d like to go further for group, member and activity SEO you’d have to follow it up with some more code.

    #271974
    maxpozitiv
    Participant

    Screenshot of adding a field

    BuddyPress ver. 2.9.4
    Theme Woffice by Alkaweb
    WP ver. 4.9.5

    #271972
    Venutius
    Moderator

    Presumably this is referring to the BuddyPress Group Email Subscription plugin? Have you tried rasing this as a feature request on that plugins forums?

    #271969

    In reply to: Assign Members Page

    baccoeur
    Participant

    Hi

    Thank you for your response

    I just follow and check the instruction you give.

    Check Dashboard>>Settings>>BuddyPress>>Pages and make sure the BP Members component is assigned to your members page.

    Here are the issue i have found.
    Please see screenshot
    http://prntscr.com/j3m4oz

    The following active BuddyPress Components do not have associated WordPress Pages: Members. Repair

    Please advice.

    Thank you!

    #271962
    Venutius
    Moderator

    I think there’s a few ways of achieving this, for one thing there’s a bunch of plugins that change the default activity feed in the members howmepage. Take a look at https://buddydev.com/plugins/facebook-like-user-activity-stream-for-buddypress/ That would make a good start.

    Another way is to Overload the activity-loop page in BuuddyPress, this basciall does what the plugins do, but without a plugin. You can take the default page from the plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/activity-loop.php and change the way the activity filters work for your site. It’s a bit more advanced but there’s plenty of forum posts about doing it.

    #271961
    avaiya
    Participant

    Hi there,
    I just started using BuddyPress for my membership site 2 weeks ago. Is there a way to have a page, kind of like the Home page of Facebook, where you see a news feed of everyone’s posts in the membership?

    I see that under each person’s Profile, there’s an Activity feed, but that only shows the activity of that person. I want members to be able to see the activity of everyone, all in one place.

    Thanks!

    #271958
    T
    Participant

    Hi @bntbrl,

    Did you get get this resolved? I’m stuck in a similar situation. Users get the activation email, but it directs them to “invalid activation key”… they cannot log in.

    The key is not in my database either.

    So stuck, and no way to contact @buddypress

    🙁

    #271957

    In reply to: Invalid activation key

    T
    Participant

    Hi @rsnipun, did this ever get resolved for you? I’m in the same boat where users get the invalid activation key, and it’s empty in my database too. I wish someone from @buddypress could help! I can’t find a solution anywhere.

    🙁

    #271955
    begindot
    Participant

    Did you try the forum notifier plugin? You can also have a look at other plugins here Best BuddyPress Plugins

    #271944
    darunia77
    Participant

    Hey guys, @grounder is talking about xprofile fields plugin, not Buddypress. Read the thread title.

    I assume it’s this plugin as it has been abandoned by wordpress recently as it has not been updated in 3 years or so.

    Buddypress Xprofile Custom Fields Type

    I am also using this plugin and looking for an alternative. My hosting (wp-engine) just notified me that this plugin has a security vulnerability and they have contacted the developer to fix it but I doubt it will happen.

    I think this plugin might be an alternative but have to look into it, if anyone is also in this situation. This one is also not updated:

    Advanced XProfile Fields for BuddyPress

    #271943

    In reply to: Assign Members Page

    Venutius
    Moderator

    Check Dashboard>>Settings>>BuddyPress>>Pages and make sure the BP Members component is assigned to your members page.

    If that’s the case then it’s likely something is messing with BP.

    #271934

    In reply to: Cannot activate user

    T
    Participant

    I just switched the register URL back to just “starwarscards.net/register” … and made a new page and linked it under BuddyPress Settings, but it’s not changing the link on my menu to the new URL…?

    #271933

    In reply to: Cannot activate user

    Venutius
    Moderator

    Yep I can confirm that method does not work, to change the page, create a new page and link it in the Settings>>BuddyPress>>Pages options.

    The email address in the settings>>General page is not the one WP uses to send notifications.

    #271917
    Venutius
    Moderator

    Here’s the code for the friends activity with BuddyPress Activity Shortcode:

    [activity-stream for=logged scope=friends]

    #271914
    Venutius
    Moderator

    Hi Steve,

    I took a look at your other requirements, for a “my friends” and “my groups” activity shortcodes. BuddyPress Activity Shortcode does not currently support these features but I’ve submitted new code to the developer so they can support your needs, I’ve made it a doddle to use if it is accepted.

    #271907
    Venutius
    Moderator

    Seems like it’s not working. What happens if you deactivate BuddyPress and just use the wordpress registration?

    #271906
    DR_MCGILL
    Participant

    Thx for the help. Looks like Amazon is a little tricky. I found a good source that led me to a plugin for aws: https://wpforms.com/how-to-set-up-wordpress-smtp-using-amazon-ses/
    could you give it another try and see if it works now. I think this is the only option for Buddypress and amazon, surprised this hasn’t come up before. But I could easily be missing something…

    #271901
    Venutius
    Moderator

    Try deactivating all but BuddyPress, see if that fixes it

    #271895
    Venutius
    Moderator

    BuddyPress basically uses the wordpress email system, it uses a sender address of wordpress@yoursite.com. Some email providers block this generic address. Mine doesn’t, if you like I could register on your site and see if it works for me?

    alexalexalex09
    Participant

    Whoops, I forgot instructions on how to change the account details fields. Here, I updated it:

    To change the text on the regular (Account Details) fields, make a copy of wpcontent/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php and place it in themes/your-child-theme/buddypress/members (a folder which you will have to create).

    Then, open that file and replace every instance of <?php _e( '(required)', 'buddypress' ); ?> with your asterisk (*).

    Then, to change the text on profile fields (Profile Details), just add the following code to bp-custom.php (which, if it doesn’t exist, you’ll need to create in wpcontent/plugins).

    
    function bp_change_required_label($translated_string, $field_id) {
    		return '*';		
    }
    add_filter('bp_get_the_profile_field_required_label', 'bp_change_required_label', 10, 2);
    

    This function hooks into the function bp_get_the_profile_field_required_label() in buddypress/bp-xprofile/bp-xprofile-template using the supplied filter. It takes the translated “(required)” string and replaces it with “*”. which will also remove any translation – but that should be acceptable for a symbol in most cases.

    alexalexalex09
    Participant

    I know this is an old thread, but for those who are (like me) interested and googling this, here’s a quick solution that requires no language file editing.

    Just add the following code to bp-custom.php (which, if it doesn’t exist, you’ll need to create in wpcontent/plugins).

    
    function bp_change_required_label($translated_string, $field_id) {
    		return '*';		
    }
    add_filter('bp_get_the_profile_field_required_label', 'bp_change_required_label', 10, 2);
    

    This function hooks into the function bp_get_the_profile_field_required_label() in buddypress/bp-xprofile/bp-xprofile-template using the supplied filter. It takes the translated “(required)” string and replaces it with “*”. which will also remove any translation – but that should be acceptable for a symbol in most cases.

    #271885

    In reply to: Initial member order

    Venutius
    Moderator

    I’ve been playing with this and I too am struggling. What I have discovered is as follows:

    Remove the & from the beginning of the string and alphabetical will work.
    Start the string with another option beginning with an & and alphabetical will work.

    Exclude does not seem to work in any variation.

    I’ve raised this in a track ticket:

    https://buddypress.trac.wordpress.org/ticket/7742

    #271877
    Venutius
    Moderator

    how about if you only have BuddyPress running? does that fix it?

Viewing 25 results - 7,026 through 7,050 (of 69,106 total)
Skip to toolbar