Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,851 through 4,875 (of 68,945 total)
  • Author
    Search Results
  • #305242
    geglynn
    Participant

    I have three admin accounts on my site – the default admin, a TempAdmin, and one under my own username. I can edit the first two but not the third. I can view the standard and extended profile but when I mouse over the account I do not see the edit link nor links to assign roles etc. that I see for the other accounts. I am using the latest version of BuddyPress, on the latest WordPress hosted on WordPress.com. Their techs cannot figure this out. Any help would be appreciated. The site is https://hellocommunity.net

    #305236
    valuser
    Participant

    Another option that PERHAPS MIGHT work

    Have a separate home page for any group you want

    Try making a page template called “front-slug-group-name.php” for each group (for which a unique home page is desired)

    (“group-name” being the lowercase name of the group)

    and put it in wp-content/themes/your-theme/buddypress/groups/single/

    as in

    wp-content/themes/your-theme/buddypress/groups/single/front-slug-group-name.php

    DenisLafont
    Participant

    Hello,

    I’m using Buddypress latest version, with a child theme.
    I would like to enable a specific WordPress role I’ve created (“Gamer”) to be able to edit the BP Profile of all users. How can it be done ?

    Cheers,

    Denis

    #305229
    Venutius
    Moderator

    Hi there Kenni,

    Thanks for reporting this, would you mind raising it as an issue on Trac:

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

    Then you’ll get confirmation when it’s fixed.

    #305225

    In reply to: Notification issue.

    stokim2012
    Participant
    #305223

    In reply to: Notification issue.

    Venutius
    Moderator

    Ah got you, I can confirm clicking on blog based notifications does not clear the notification.

    Could you raise a bug report on Trac?

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

    Once you’ve done that I’ll add some comments about my own testing.

    #305220
    Venutius
    Moderator

    Ah got you, I can confirm clicking on blog based notifications does not clear the notification.

    Could you raise a bug report on Trac?

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

    Once you’ve done that I’ll add some comments about my own testing.

    #305219

    In reply to: Notification issue.

    stokim2012
    Participant

    @venutius
    Not on the Buddypress activity stream.
    Could you please write a post via editor on the WordPress?
    I mean on the post thread, not the Buddypress activity stream. 🙂
    I’m testing on Twenty sixteen theme+Buddypress plugin only.

    #305216

    In reply to: Notification issue.

    stokim2012
    Participant
    #305211
    naomibuch
    Participant

    Maybe I should be clearer ….The Buddypress navigation css code in WordPress menu that works is bp-menu bp-login-nav to log in my website but when I put the same code in css class in the Menubar plugin it doesn’t work….

    #305204
    naomibuch
    Participant

    Hi,

    Thanks for your reply….but I already have a horizontal mobile menu and it looks great, the problem is getting the registration and the log in menu items to work when they are clicked on.

    I am looking the same built in BuddyPress navigation functionality that’s built in WordPress to work in my custom menu when users click on the Registration menu and the Log in menu.

    #305200
    mytubepress
    Participant

    If I’m not wrong in new buddypress 3.x you can use the customizer to make it vertical.

    JM Deom
    Participant

    I use the WordPress version 5.1.0
    BuddyPress 4.2.0, BuddyPress Group Email Subscription 3.9.2 BuddyPress Profile Shortcodes 1.1
    Website address : https://pit.mkpbe.org

    All our notification group param are lost and are replaced by “no notification”.
    I suppose when installing the last version.
    Also, when I try to modify the notification param, the modifications are not saved and they are replaced by the value “no notification”.

    Best regards,
    Jean-Marie Déom
    Webmaster MKPBE.org

    shanebp
    Moderator

    Use this filter hook and write a function:
    apply_filters( 'bp_members_format_activity_action_new_member', $action, $activity );
    Found in : ...plugins\buddypress\bp-members\bp-members-activity.php

    For example, untested:

    function pixie_new_member_activity( $action, $activity ) {
    
        $user_id = $activity->user_id;
    
        // assuming the field names are State and City
        $state = xprofile_get_field_data(  'State',  $user_id,  'comma' ); 
        $city = xprofile_get_field_data(  'City',  $user_id,  'comma' ); 
    
        $userlink = bp_core_get_userlink( $user_id );
        $action   = sprintf( __( '%s from %s in %s became a registered member', 'buddypress' ), $userlink, $city, $state );
    
        return $action;
    }
    add_filter( 'bp_members_format_activity_action_new_member', 'pixie_new_member_activity', 10, 2 );
    #305182
    shanebp
    Moderator

    This is a general WP question and is not specific to BP.
    There are many ways to do this – depending on your theme, your ability with code, etc.
    There are some plugins that can help you.
    We suggest you do a google search on your question without restricting it to BuddyPress and you will see thousands of results.

    #305181
    alysonmac
    Participant

    I am using buddypress in a website that I have developed. I want to disable “REGISTER HERE” buttons if the user is already logged in, or at least put a message close to buttons if user is logged in…how can i do that…or another option is if they are already registered, if they click on the button it takes them to a page that says that they are already logged in and they can see their profile or activity

    Using Latest version of buddypress and wordpress

    guillaummelane
    Participant

    Hi ! Here’s my problem.
    I want to embed a link by writing HTML code that’s specific to every group, in every group’s home page by the means of a “Custom HTML” widget.
    Problem : when I do that, I get the same embeded link (HTML code) copied on every single group’s home page.

    Wordpress version : 5.1.1 (I think)
    Buddypress version : 4.2.0

    Front Page

    Kind regards

    Guillaume

    #305178
    sata2z
    Participant

    Hey, i faced same issue and finally found the plugin conflict issue, i have deactivated “Buddypress Who clicked at my Profile?” plugin and the blank notification issue solved.

    #305172
    Venutius
    Moderator

    Hi Tammy, These days most themes work with BuddyPress, although there can be occasional inconsistencies.

    In general there are two types of themes, general themes not written specifically for BuddyPress these are typically free. There are also BP specific themes, often for a cost and written specifically with BP in mind.

    Personally I use general themes and add the custom features I want. In the majority of cases you don’t actually need to do much customisation to get the site feel that you desire.

    So really the decision is about the specific visual attributes of the theme as they apply to the site you want to create and for that only you know what you are looking for.

    Which items are you referring to?

    Venutius
    Moderator
    #305159

    In reply to: Age instead Birthday

    Venutius
    Moderator

    Hi Ben,

    How did you get on with this? I’ve been playing with profile fields and I’ve come up with a solution to this, however there is a bug in BP which prevents it from working:

    https://buddypress.trac.wordpress.org/ticket/8082#ticket

    Also, in doing this I realised that it would be simpler to add this as a feature to the existing datebox that comes with BP, it already has an option to display the elapsed time and it’s not too difficult to add another option for Age:

    https://buddypress.trac.wordpress.org/ticket/8083#ticket

    Venutius
    Moderator
    #305153
    Venutius
    Moderator

    I think you must be using the BP Legacy template as the BP Nouveau version of compose does not do that. So that is one option – move to BP Nouveau in Settings>>BuddyPress>>Options.

    Otherwise I’m not sure what to suggest, the input field is needed to add new recipients so you can’t hide it.

    #305152
    Venutius
    Moderator

    Hi there,

    I don’t believe this is a feature of BuddyPress, what would be the purpose of it?

    #305151
    Venutius
    Moderator

    A few years ago I was in exactly the same boat as you, I guess we all have to start somewhere. If I were you I’ve remove some of the complexity to your setup by deactivating MemberPress and then proceed to configure your site just with BuddyPress and see how far you get creating your ideal site. BP has a great many features and options and with a wide range of plugins available for it there should be very few scenarios that BP cannot deliver for you.

Viewing 25 results - 4,851 through 4,875 (of 68,945 total)
Skip to toolbar