Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,276 through 8,300 (of 69,044 total)
  • Author
    Search Results
  • #264075
    danbp
    Participant

    Hi,

    you need a child theme and a small code modification.

    The code is explained here.

    if ( bp_has_members( bp_ajax_querystring( 'members' ) ) ) is to replace by something like (can be different)
    if ( bp_has_members( 'type=random' ) )

    In a “buddypress” folder of your child theme, you add a copy of this file:
    wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php

    What ever you modify in that file while now be interpreted by BuddyPress. The advantage of this method is that BP can be updated while your modification in the child will always be save and taken in account over the current version.

    You can also search the forum for members-loop to get other information.

    r-a-y
    Keymaster

    Disable the “Site Tracking” component under “Settings > BuddyPress” in the WP admin dashboard. When you do this, blog posts and blog comments will not be recorded into the BP activity stream.

    jeffm2008
    Participant

    While we are at it, is there a way to disable my blog posts from automatically showing up as my buddypress activity posts? Thank you very much in advance.

    #264066
    r-a-y
    Keymaster

    1,2,3,4,6 should be left to WordPress plugins as these are specific to WP.

    7, 10 have been discussed as core options. It just takes time for developers and the team to finalize specs and to code as this is all done on a volunteer basis. 10 is hard because it relies on a ton of dependent code that hasn’t been written or finalized yet.

    5 – There’s been some preliminary work on this. See https://github.com/buddypress/bp-types-ui.

    9 – If you’re using WordPress multisite, this should be already available as a WordPress option under “Network Admin > Settings”. Otherwise, this plugin might work, but does the opposite. It restricts signup to email domains that you specify.

    Notifications

    2 should already be in core.
    3 is a good request, but unreliable due to how the notifications data is stored. It would be easy to do for BP core notifications, but notifications generated by plugins could store the user ID differently, making this unreliable.
    4 could be done via a custom template or via a small code snippet.

    r-a-y
    Keymaster

    If the post contains an inappropriate word that you’ve set up in WP’s comment moderation settings, then BuddyPress also inherits these settings. This functionality was added in BP 2.6.0.

    To disable this functionality from the Activity component, add the following to your theme’s functions.php or wp-content/plugins/bp-custom.php:

    // Do not use WP's Comment Moderation with BP Activity component
    remove_action( 'bp_activity_before_save', 'bp_activity_check_moderation_keys', 2, 1 );
    
    // Do not use WP's Comment Blacklist with BP Activity component
    remove_action( 'bp_activity_before_save', 'bp_activity_check_blacklist_keys',  2, 1 );
    
    #264054
    danbp
    Participant

    Hi Jody,

    BP pages should be empty, so it is normal you see only a title in the page preview. These pages are dynamic and completed by BP, depending the context. As site owner, you have nothing to add to them.

    To get the page system to work correctly, you have to enable the permalinks. You can choose any option, except “by default”. Don’t forget to save your setting.

    For more details, please read the documentation.

    I visited your site, but was unable to access the member directory page or site activity page. Seems you require user to be logged in to access them… 🙁

    #264052
    coolhunt
    Participant

    @danbp

    Big thanks! its definitely got me to the right direction..
    though… im a little nervous to make updates on Buddypress.js

    -im trying it out now on twenty seventeen

    #264050
    danbp
    Participant

    When you are on frontend, your profile tab, you should see follwing menu items under the buddy nav bar:

    View | Edit | Change Profile Photo | Change Cover Image

    and the same items under your user menu (below Howdy), in the top right corner on the Toolbar, as submenu of the Profile item.

    If it isn’t case, some common issues can be:
    – you omitted to save your BP options
    – you use a cache and see the site content from before BP installation
    – there is a weird bug in a file
    – your theme isn’t taylored for BuddyPress
    – there is a conflict with another plugin

    What you could try:
    – double check your settings
    – clear the cache
    – reload a fresh copy of BP via FTP
    – test with a Twenty theme
    – you have to debug

    Note also that you can only load ONE avatar or ONE cover image at a time and that you have definitely only one picture for each bundled with your account.

    #264049
    johanna75
    Participant

    I use the BP PROFILE SEARCH plugin (mandatory for members search form i think… because if Deactivate it search form deseapered)
    and SuitePlugins – Advanced XProfile Fields for BuddyPress

    #264047
    djsteveb
    Participant

    @johanna75 – very interesting – I wonder if this happens with the other buddypress search plugins as well. I assume you are using the standard bp members search not one of the add on profile search plugins?

    #264035
    aido141176
    Participant

    Hi danbp, thank you for your response. Unfortunately I’m not sure how I can get this to work.

    Can you please show me a loop that will show all activity for say a group with ID 2. Or even with a slug, say ‘group_slug’.

    Here is the loop I am using:

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . "&primary_id=2" ) ) : ?>
    
    <?php while ( bp_activities() ) : bp_the_activity(); ?>
     
            <?php locate_template( array( 'buddypress/activity/entry.php' ), true, false ); ?>
     
        <?php endwhile; ?>
    <?php endif; ?>

    I tried both to incorporate your code into the activity loop but it didn’t work.

    I want display this activty not on a buddypress page. I want it to go on homepage. I can already get the group ID I just want to be able to make a loop that displays the activity of a curtain groupusing the group ID.

    If you could show me a whole complete loop that would work I would be really greatful.

    Thanks

    danbp
    Participant

    You have already asked for this in the past 2 weeks!
    How to add a tab or content (like user’s post) on a profile is explained in many topics if you would take a little while to search the forum.

    You want to use a third party plugin, but we can’t help you for this as we are all volonteers here, who have enough to do with BuddyPress. It is to you to read the software documentation and built it in your site.

    This topic is closed as duplicate. Conversation continues here.

    #264030
    danbp
    Participant

    Hi,

    you have to use a group_id and to ensure you’re in an appropriate loop (activity or group)

    To get a group id, you can for ex. do:

    // check for a group ID
    	if( bp_has_groups() ) {
    		// Grab current group ID
    		bp_the_group();
    		$group_id = bp_get_group_ID();
    	}	
    	
        // apply our changes only to this group ID's
    	// conditionnal action
    	if ( $group_id == 22 OR $group_id == 8 ) {  

    … and so on!

    You may also use bp_parse_args, depending where you use your custom work. In other words, you can create a complete new activity loop on a distinct page template for only one group.

    Using bp_parse_args() to filter BuddyPress template loops

    #264025

    In reply to: spam registration

    djsteveb
    Participant

    @malaruban – did you search the forum for this? It’s answered like very month since the beginning I think..

    everyone has different suggestions..

    1 many suggest “wp spamshield”

    2 I like “good question” plugin on one site, but use “buddypress humanity” on another..
    one I’ve considered replacing those wit his “user registration aid”

    3 I also use ip geo block – biggest help on most sites.

    4 strongly suggest getting the “shield” firewall plugin and going into lockdown menu and disabling xmlrpc and rest api – but your situation may vary.

    I use all four plus more on various sites (just one of them from step 2)

    #264024
    djsteveb
    Participant

    I use https://wordpress.org/plugins/buddypress-login-redirect/ – and it does exactly that.

    #264023
    djsteveb
    Participant

    page titles for member profile pages and group pages are not easy to change up – I posted some info I got a while back on this, but before I go digging for that info, I wonder if you really mean groups like buddypress groups.. since your url fragment there has “forum” in it – you may be refering to page title for the forums which I think is more of a bbpress issue (?) –

    #264016
    itskater91
    Participant

    Thanks! I actually figured it out with the BuddyPress plugin. Another plugin was blocking me from adding the BuddyPress Login to the widgets once that was allowed it fixed itself.

    #264014
    jenfilgate
    Participant

    I had to add this code to my functions.php file to get rid of it.

    /* Remove errors if any */
    error_reporting(E_ERROR | E_PARSE);
    /* End remove Errors */

    It just removes the warning, but doesn’t solve the problem that causes it. I wasn’t able to find a resolution to that and may need for my plugins to update in order to solve it. Mine was being caused by a conflict between BuddyPress and W3 Total Cache.

    #264013

    In reply to: BuddyPress Login Page

    clf885
    Participant

    I didn’t know that BuddyPress didn’t have a login page so my bad. What other details do I need to include?

    #264012

    In reply to: BuddyPress Login Page

    danbp
    Participant

    BuddyPress doesn’t use “a login page”. If you have a radio button for the “remember me” option, it is certainly because you’re using a third party plugin or theme or widget.

    But you don’t give any detail about your config, so it is just impossible to tell you more!

    #264011
    danbp
    Participant

    Hi,

    please try to search a little before asking such basic question! Ie, you would have found this one:

    https://buddypress.org/support/topic/create-dynamic-user-links-to-end-users-wallprofile-etc/

    #264007
    danbp
    Participant

    Can you give an example of what you tried and tell us where you did that change ?
    Also, you should test BuddyPress with one of WP’s default Twenty theme before activating any other theme.

    And more generally, giving some details can help too.

    #264006
    danbp
    Participant

    This field is visible by default.
    default profile activity

    If not, so the problem might be with your theme.
    For other what’s new form questions, search the forum.

    Some answers here:

    Height what’s new form


    https://buddypress.org/support/topic/how-do-i-remove-textarea-resize-without-editing-the-js-script/

    #264002
    danbp
    Participant

    Simply by not using code!

    Remove the call to user avatar from the templates and you’re probably done. 😉

    Or if you want to code, see here and search for bp_member_avatar.

    #263999
    danbp
    Participant

    Hi,

    sorry but this is not related to BuddyPress.
    Dashboard access is part of WordPress and the way it is displayed on your screensht indicate that it is also theme dependant somehow.
    You can hide any menu item from the WP toolbar by following these instructions

    or you can chosse to active/deactive the toolbar option in BP settings or use a plugin to limit dashboard access.

Viewing 25 results - 8,276 through 8,300 (of 69,044 total)
Skip to toolbar