Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,751 through 8,775 (of 69,046 total)
  • Author
    Search Results
  • #261442
    Slava Abakumov
    Moderator
    #261433

    In reply to: members not showing

    Venutius
    Moderator

    You need to look into setting up a template overload of the files that create those pages:

    Theme Compatibility & Template Files

    I’ve not used visual composer, only siteorigin so far, with site origin you create a grid of columns and rows and you can insert any widget into any Page Builder block

    #261420
    shanebp
    Moderator

    Just guessing…
    Instead of a filter, try using the action hook:

    add_action( 'bp_legacy_theme_ajax_querystring', 'sbpp04_hide_from_ajax_search', 50, 2 );

    https://codex.buddypress.org/developer/function-examples/bp_ajax_querystring/

    #261414
    shanebp
    Moderator

    This function will redirect everyone, other than site administrators, to the home page when they try and access the members directory.
    Put it in bp-custom.php.

    function grim_members_directory() {
    
    	if ( bp_is_members_directory() && ! is_super_admin() )
    		bp_core_redirect( site_url() );
    	
    }
    add_action( 'bp_ready', 'grim_members_directory' );
    #261407
    Venutius
    Moderator

    Before you do that, check out my page on setting up users, see if that gives you any ideas:

    http://buddyuser.com/setting-up-site-members-with-buddypress

    #261403

    In reply to: Profile Page and Bio

    Venutius
    Moderator

    Hi there,

    You might like to check out my page on setting up users

    http://buddyuser.com/setting-up-site-members-with-buddypress

    This includes details of adding additional profile fields to the users profile. Also check out the section “Installing BP” in my site, I’m sure it will give you a lot of useful information.

    #261399
    Venutius
    Moderator

    It’s not entirely clear what you are asking. BuddyPress does not install an “About Us” section. If that’s what you are trying to remove you are in the wrong place.

    #261398
    Henry Wright
    Moderator

    Hi David

    I’ve moved this topic to Your BuddyPress.

    #261396
    Henry Wright
    Moderator

    BuddyPress doesn’t let you change username but there are plugins available that will let you do that.

    BuddyPress Username Changer

    #261394
    danbp
    Participant

    Hi @grimbot,

    Members are the heart of BuddyPress. So it is important to understand that members are core and that anything related to them is quite “delicate” to handle.

    In your case, removing the member directory doesn’t mean to remove the page called members, because this page is BP territory and, like i said, it is core. If you remove it, you avoid BP to work.

    First thing you can do is to remove any access to this member page on your theme.
    Go to appearance > menu and uncheck “members” from the BP menu.

    #261387
    byates286
    Participant

    Still have issues with all plugins disabled besides buddypress… I strongly think its a Javascript or CSS issues.

    #261384
    aapi001
    Participant

    Resolved: Assistance appreciated and provided at BuddyDev.com

    Find this working code here

    #261383

    In reply to: Facebook plugin

    jackstoriesorg
    Participant

    Thanks for your try, but I think that this was considered a bit backwards. Our members already can log into the site with Facebook credentials, and they see the FB feed on the front page, that is great but the challenge is getting folks to make the switch with comfort, and to update both the website activity posts and the FB page with a given post so that no one feels left out as the transition progresses.
    Our goal is to make the website the central hub of all interaction where all posting is best and most efficiently done from within the activity post of Buddypress. (from there it should go out to other social sites, in fact several kinds of sites such as Twitter, Google+, FB and so on- this would help reach those who are stuck in a familiar method of engagement)
    So the question remains, has anyone got a good way to post the activity feed (and images) to other sources like Facebook? (other WordPress posts work well with some plugins to create feeds)
    Thanks,
    Victor
    brodtstuff@gmail.com
    prayersforpets1.org

    #261381
    shanebp
    Moderator

    A 508 error indicates that your site has reached the resource limit.

    You could talk to your hosting provider about getting more resources.

    Or you can google ‘buddypress 508 error’ – there is a lot of info available.
    For example: https://buddypress.org/support/topic/plugin-buddy-press-leads-to-error-508-what-to-do/

    #261380
    shanebp
    Moderator

    Try this in bp-custom.php

    function sg_gettext( $translated, $original_text, $domain ) {
    
        if ( 'buddypress' !== $domain )  
               return $translated;
    
        switch ( $original_text ) {
            case 'Add Friend':
                return 'Something Else';
    
            default:
                return $translated;
        }
    }
    add_filter( 'gettext', 'sg_gettext', 20, 3 );
    #261375

    In reply to: Hide Emails Menu

    Alex Stine
    Participant

    Hello,

    For now, I have hid the menu with CSS until I can find a cleaner solution. BuddyPress adds way to many links to the Admin especially considering the fact I don’t need BuddyPress registration features, they are just there and cannot be disabled for whatever reason.

    Thanks for any help. 🙂

    David Cameron Law
    Participant

    If you install BuddyPress on the main domain you can use the Display Widgets SEO Plus Plugin https://wordpress.org/plugins/display-widgets-seo-plus/ (I’m the developer) to show/hide widgets on specific sections of a site.

    Just released version 1.1.0 which includes specific widget logic support for BuddyPress/bbPress, could set the widgets for the BuddyPress parts of the site to NOT load on non-BuddyPress sections, this would stop some ‘bleed through’ of content from BuddyPress to the rest of the site.

    That being said, from an SEO perspective (my background is SEO) there are other issues that could leak out to potential Google visitors.

    Check this Google search: https://www.google.com/search?q=WordPress+Plugin

    Note the WordPress Plugin Repository listing (1st result) has six additional indented results (called sitelinks: https://support.google.com/webmasters/answer/47334?hl=en).

    The 6 links for the WordPress Plugin Repository listing are benign, but if there was an adult section of WordPress it could be listed as a sitelink.

    From a WordPress perspective there’s also the core WordPress Search functions. The Static Pages that BuddyPress uses for ‘holding’ the BuddyPress specific output can be found via a search. If you have the default BuddyPress setup try using the WordPress Search Form to search for the word “Members”.

    This will find your BuddyPress Members Directory Holding Page.

    Same result with “Registration”, “Activate” and “Activity”.

    It’s difficult to prevent bleed through of different types of WordPress content, so if your client is conservative I’d suggest a sub-domain/other domain to play it safe and manually add interlinking via Text Widgets and Nav Menu Links.

    David Law

    #261371
    sixthgalaxy
    Participant

    Thank you @shanebp for your help.

    Can you please let me know how to change the text “Add Friend” button text to something else? I have found “Add Friend” text in bp-templates/bp-legacy/buddypress-functions.php file,but when I change the text in that location it does not take effect. It only takes effect once I click on it and then click on “Cancel Friendship Request”. When I refresh the member page, it again shows “Add Friend” text.

    Thank you.

    #261368
    Venutius
    Moderator

    BuddyPress does not come with shortcodes I’m afraid, these are from some other plugin

    #261364
    mthant
    Participant

    I did not put in those shortcodes. These must have included with BuddyPress pages. It didn’t show any other text except these shortcodes when I click the corresponding page.I have included the link to the page.
    This is the registration that pops up when registration submenu is clicked

    #261361
    shanebp
    Moderator

    http://hookr.io/functions/bp_add_friend_button/

    buddypress\bp-friends\bp-friends-template.php ~Line 338

    #261354
    Venutius
    Moderator

    This is similar to what I’ve been looking for, so far I’ve not found an easy way to do this. It’s not actually a BuddyPress issue, it’s bbPress that creates the Forum list. So this is a question for the bbPress support forum.

    #261349

    In reply to: BP Issues

    Venutius
    Moderator

    That’s great!

    You might be interested in my website http://buddyuser.com it’s my attempt to help newbies get the most out of BuddyPress, It’s got lots of plugin reviews and how to guides, you might like to give it a look.

    #261341

    In reply to: BP Issues

    Venutius
    Moderator

    For points 1 and 2 you need to ask at the BuddyDev forums as they are not BP issues.

    For point 3 you can edit BuddyPress emails in Dashboard>>Emails.

    For point 4 there’s some plugins that will hide the admin bar for certain user types, I’ve not tried them but try searching the WordPress plugin repository one I saw that might do the trick is https://wordpress.org/plugins/better-admin-bar/

    #261335
    shanebp
    Moderator

    ‘Friends’ is a relationship between registered WP users.
    Not Groups & Users.

    You can extend the Groups component to handle different concepts of Friends, but you’ll need coding skills. Use the Group Extension API.

Viewing 25 results - 8,751 through 8,775 (of 69,046 total)
Skip to toolbar