Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,676 through 5,700 (of 69,044 total)
  • Author
    Search Results
  • #282049

    In reply to: buddypres

    shanebp
    Moderator

    Your current registration page url ends with __trashed, so your link is still pointing to that page.
    You can edit links or create custom links by going to …wp-admin > Appearance > Menus

    But you cannot just replace the register page, if that is what you did.

    Have you read the
    modifying-the-registration-form

    You can customize the layout by editing the template.
    If you are using the Legacy Template pack, this is the file:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    Instead of editing core files, you can overload a template in your child theme.
    Read this.

    #282024
    iamdev
    Participant

    Can anyone help i am having problem caching buddypress site logged in user are served the cached page

    #282011
    nivanova64
    Participant

    Hi BP Support Team,

    I do have the following problem: As part of registering process all of my users are getting redirected to the activation page asking for an activation key after clicking the link in their email. I have no idea why this is happening as I do not need to have additional activation key ( or any activation options). The email link is enough for me.
    I’m using BBPress version 3.2.0.
    I’m having the following plugins installed and activated:
    – Bbpress 2.5.14
    – Buddypress registaration options 4.3.5

    Thanks,

    Neli

    #282010
    Venutius
    Moderator

    By the sounds of it you have two plugins trying to declare the same function name. Deactivate all of your plugins apart from BuddyPress, if the error remains try switching themes to 2016, if that fails then it’s custom code you’d added via function.php, bp-custom.php etc.

    #282002
    iamdev
    Participant

    i am having trouble with my site the logged in user is served the cached version of the site and without cache you know it get slow so can anyone suggest me which is the best cache plugin for buddypress and i am considering w3cache will it be good and also tips for performance will be welcomed

    #281962
    Venutius
    Moderator

    I’m not sure anything’s been done with it due to potential issues with spamming users. To work around this my suggestion would be to install one of the BuddyPress Mass Messaging plugins and email all with a link to the activity post. It’s a bit clumsy I know.

    #281941
    shanebp
    Moderator

    Have you read the docs re advanced-configurations ?
    Note this section: ‘Put profiles in the root — example.org/username/’

    #281940
    shanebp
    Moderator

    I cannot duplicate this using PHP Version 7.0.26

    As you probably know, it’s just a warning and can safely be ignored.
    And won’t be visible when you turn debug off.

    afaik, part of the next release is cleaning up some calls re PHP 7+

    If you’d like to open a ticket, you can do so here.
    Be sure to include the steps necessary to reproduce, including which template pack you have selected in Settings > BP > Options.

    shanebp
    Moderator

    If you are using the Legacy Templates, the BuddyPress register form is here:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    If you are using the Nouveau Templates, the BuddyPress register form is here:
    buddypress\bp-templates\bp-nouveau\buddypress\members\register.php

    Venutius
    Moderator

    You’d probably need to ask gravity forms if they support the BuddyPress Extended Profile.

    #281906
    shanebp
    Moderator

    Please use the code button when posting code.

    bp_activities_title() returns the title for all activities.

    If the activity item already exists, try bp_activity_feed_item_title()

    But it sounds like those items do not exist.
    You should not have to output those items.
    It should be done automatically – IF – you filter bp_blogs_record_post_post_types to include your post types.
    More info here.

    If you are using some plugin to create custom post types ( ACF ? ), the creators of that plugin may have some tips on how to use it with BuddyPress.

    #281905
    canadabri
    Participant

    The only plugin I have active is BuddyPress.

    Perhaps it is the browser compatibility though… didn’t consider this before I had posted… perhaps one of the browsers I was using on this particular client is an older version. Unfortunately this site I am working on is on a closed network, so auto-updates don’t happen.

    #281903
    canadabri
    Participant

    When using the BuddyPress Nouveau template and you view your notifications, the display is messed up. The table of New/Unread notifications is shown way off to the right. Legacy does not do this – everything displays nicely within the user profile section of the screen.

    I have tested with a couple of WP Themes and the same thing happens. This seems to be specific to the Nouveau template.

    Is there an update for this?

    #281897
    Eric
    Participant

    it it possible to mod code from this thread to use it for profile pages?
    https://buddypress.org/support/topic/no-index-buddypress-pages/

    #281894
    david22c
    Participant

    Hi,
    Would someone be kind enough to help me with changing a buddypress error message? (wordpress 4.9.8, buddypress 3.1.0)

    I am restricting private messaging to user’s friends/connections. Currently, the error message returned when sending a private message to someone not in your network is “Message not sent. Please try again.” which doesn’t make sense. I would like it to say something like, “Sorry, you can only send a private message to connections in your network.” How might I change this error message?

    I have been using the following code in child functions to restrict private messaging:

    // if not site admin, restrict PMs to friends
    function pp_check_message_recipients( $message_info ) {
    
    //  site admins are not restricted
    if ( is_super_admin() )
    return $message_info;
    
    $recipients = $message_info->recipients;
    
    $friend_ids = friends_get_friend_user_ids( bp_displayed_user_id() ); 
    
    $nf = 0; 
    
    foreach ( $recipients as $key => $recipient ) {
    
    if ( ! in_array( $recipient->user_id, $friend_ids ) ) 
    $nf++;
    
    }
    
    // if any recipients are not friends, remove everyone from the recipient's list
    if (  $nf > 0 ) 
    unset( $message_info->recipients );
    
    return $message_info;
    }
    add_action( 'messages_message_before_save', 'pp_check_message_recipients' );
    #281879
    Prashant Singh
    Participant

    Hi,

    These are general problems and not associated with BuddyPress at all. Sometimes we only need to google it and we will find the solution.

    Anyways, please check this https://webania.net/customize-email-sending-header-in-wordpress/ and use the snippet they gave, just replace from ‘name’ and ’email’ to yours.

    Thanks

    #281876
    Prashant Singh
    Participant
    #281867
    bemond
    Participant

    WP 4.9.8
    subdomain installation
    root dir of subdomain
    As far as I know, all was working fine. BuddyPress was installed right away.
    No core files modified
    bbPress came with Buddpress/newveau
    hosted currently with siteground. plan to move to amazon based within a short time.

    #281865
    Eric
    Participant

    hi there,
    could someone please help with some code to set buddypress members profile pages and profile tabs to noindex? (without using robots.txt)

    thanks a lot!
    br, Eric

    johndelange
    Participant

    No response….I ran into the same error. The link just isn’t working right

    Don’t click on the Howdy part, just hover, in the pull down menu go to the dark grey, profile, edit and it works (taking you to https://buddypress.org/members/timothylegg/profile/edit/group/1/ )

    BuddyPress reactions are a bit slow on this one….

    #281860

    In reply to: Peepso vs Buddypress

    johndelange
    Participant

    I have experience with both plugins: Peepso and BuddyPress.

    BuddyPress is a free plugin and offers integration with BBPress forum. It has its own look and feel, very different from Facebook. For visitors it can be difficult to understand where to do what. It does have tons of option to extend it with other plugins. To be honest you will need other plugins to get some functionality. You can customise a lot if you want to. Development is not too fast as it is run by volunteers….also means less headaches with constant updates ;-). To be honest I find the BuddyPress website a bit confusing, like the plugin it doesn’t follow standard website look and feel.

    Peepso is a paid plugin. The free plugin is pretty useless if you ask me, so if you decide to go with Peepso you will probably need the Ultimate Bundle. This bundle offers a lot of options and follows Facebooks look and feel. Users will understand right away how it works. Updates are on a regular basis, like every 2 weeks with bugfixes and extra functionality.

    Pros BuddyPress
    Free
    Extendable with other plugins

    Cons BuddyPress
    Missing some basic options (can be added with 3rd party plugins)
    Bit confusing for new users
    More plugins needed – compatibility – problems? – multiple developers -> frustration?

    Pros Peepso
    Complete package if you go for Ultimate bundle
    Users understand Facebook…and Peepso
    1 stop shop – 1 plugin – 1 developer

    Cons Peepso
    Expensive
    NOT multilingual! (bit weird for a social network!)
    Use as is – fast developing means fast updates breaking customisations.

    If you want to build a social network in 1 language, got the money and want an easy solution go for Peepso. I choose BuddyPress as I use WPML and 2 languages.

    #281846
    shanebp
    Moderator
    #281843
    Design Team
    Participant

    I have all plugins except for BuddyPress disabled and also have switched out to a basic WordPress theme again but still am not getting any sort of confirmation messages/notices when I save a new password change. I’ve checked in my BuddyPress files as well (am running the Nouveau template but have tried switching between that and Legacy to see if it would fix anything) and both have the proper code you specified in it, but nothing’s showing up.

    #281842
    Prashant Singh
    Participant
    #281841
    Prashant Singh
    Participant

    Hi,

    Please try this plugin https://wordpress.org/plugins/shortcodes-for-buddypress/ and use members listing shortcode to get the content of the members directory page.

    Thanks

Viewing 25 results - 5,676 through 5,700 (of 69,044 total)
Skip to toolbar