Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,426 through 6,450 (of 69,044 total)
  • Author
    Search Results
  • janurmas
    Participant

    Hello, Mastershas! Thanks, for your help. Now the admin bar is removed from logged-in users. It was that simple. But I have no idea with how to do with customizing the BuddyPress theme. I think this would have some code tweakings. And the Buddydev is a good idea. I’m gonna try it. Many thanks!

    Shashi Kumar
    Participant

    @janurmas

    1. To hide admin bar to non-logged in user, you can use a plugin name Remove Dashboard Access.

    2. There is no direct method to make BuddyPress profile page full-width. You can achieve this by editing Buddypress templates. To do this
    Create a child theme
    Put Buddypress folder in your child theme and edit the profile template. To do we should understand the templating system of Buddypress. Here is a tutorial for that.

    3. You can use a plugin by Buddydev which lets you write posts from front end and add blog tab under user’s profile menu.

    Hope this help you.

    Varun Dubey
    Participant

    @sarojweb You can compose emails inside BuddyPress Emails options and for available tokens you can check

    Email Tokens

    #274505
    mojomo
    Participant

    I was able to fix the avatar issue. The Firefox add-on Ghostery caused the problem. Deactivating the add-on brought back the avatars.

    However, the “add friend” button is still not working. When I deactivate all plugins except for BuddyPress, the problem persists.

    #274498

    In reply to: How to change language

    Varun Dubey
    Participant
    #274492
    dedotombo
    Participant

    OneSocial by BuddyBoss, is it possible to use BuddyPress 3 in a “legacy” mode?

    #274488
    dedotombo
    Participant

    I have the exact same issue using BuddyPress 2.9.4 (cannot update to 3 because of theme) and bbpress 2.5.14.

    #274486

    In reply to: Blank Notifications

    dedotombo
    Participant

    I have the exact same issue using BuddyPress 2.9.4 (cannot update to 3 because of theme issues) and bbpress 2.5.14 (latest).

    #274475
    balebond
    Participant

    Just found a near-hit for my needs in this post by @modemlooper:

    https://buddypress.org/support/topic/disable-group-posts-from-main-activity-stream/

    However, the code below is stripping group posts from both the “Activities” page and a member’s page activity. I tried to limit to user pages only by altering if ( bp_is_current_component( ‘activity’ ) to if ( bp_is_current_component( ‘profile’ ) but didn’t work. Anyone see what I need to change so that this snippet only fires if it is on a member’s activity page?

    function bp_filter_groups_from_activity( $a, $activities ) {
    
    	if ( bp_is_current_component( 'activity' ) ) {
    		foreach ( $activities->activities as $key => $activity ) {
    			
    			if ( $activity->component =='groups') {
    				unset( $activities->activities[$key] );
    				$activities->activity_count = $activities->activity_count-1;
    				$activities->total_activity_count = $activities->total_activity_count-1;
    				$activities->pag_num = $activities->pag_num -1;
    			}
    		}
    		 
    		$activities_new = array_values( $activities->activities );
    		$activities->activities = $activities_new;
    		 	
    	}
    	return $activities;
    }
    add_action('bp_has_activities','bp_filter_groups_from_activity', 10, 2 );
    #274455
    Venutius
    Moderator

    Leave BuddyPress Active, deactivate all other plugins, see that these will not be there, then re-active the plugins one by one till you find the one that is marking the users as spammers.

    #274454
    xprt007
    Participant

    Hi

    Cannot delete Spammer

    Thank you for the quick response.
    The question is which plugin?
    I tried deactivating a couple starting with Aksimet and when I reached bbforum & buddypress & deactivated both: the pink background of the “Spammer” user disappeared, as well as the link “Extended”. They both do not reappear with bbforum activated. (See screenshot)
    That made me assume it’s Buddypress that’s responsible for this pink background and the Extended link.
    Moreover it’s under “Extended” edit of User on “wp-admin/users.php”, that one gets the status shown and where one can change from Spammer to Active, which will not work.

    So just wondering … Or may be I’m just overlooking something obvious?

    Regards

    #274452
    Venutius
    Moderator

    BuddyPress does not mark users as spammers, it must be some other plugin that’s doing that

    #274451
    xprt007
    Participant

    I need to add, Wordfence is set to immediately block non-existent usernames and this particular user is actually there. Checked the spelling several times, correct password! So could it be Wordfence takes a cue from this Buddypress Spammer status business?
    Anyway, the question is how does the admin remove another admin or other user from spammer status?

    Varun Dubey
    Participant

    @cgkid You can check bp moderation pro

    #274429
    Varun Dubey
    Participant
    #274422
    Mathieu Viet
    Moderator

    @aaronpods no problems.

    Have you deactivated all plugins/bp-custom.php/mu-plugins/ except BuddyPress ?

    I think there’s something preventing the regular Nouveau JavaScripts to load. As the post form needs it to be displayed because it uses BackBone.JS views, it’s the reason. The other script/plugin is only conflicting with the activity directory, as i’ve checked your profile, the Nouveau JavaScript are loading.

    Screencap

    #274421
    meestergijs
    Participant

    Solved. I had to tick the option: Sync BuddyPress signup email address with WooCommerce billing email address in the WC4BP plugin..

    ahad77
    Participant

    my bp them is sweetdate
    The selected Template Pack will serve all BuddyPress templates running buddypress Nouveau

    Venutius
    Moderator

    Might be wise to confirm with you which bp theme you have in dashboard>>settings>>buddypress>>options ? are you running Nouveau?

    ahad77
    Participant

    Dear @venutius thanks your reply
    I did your suggestion but it did not work, my wordpress is 4.9.6 and buddypress is 3.1.0

    Venutius
    Moderator

    There’s a variety of ways to achieve this, one way is to overload the BP Template profile header template file. It’s located in plugins/buddypress/bp-templates/bp-noveau(or bp-legacy)/buddypress/members/single/cover-image-header.php assuming you are using profile cover images.

    This file constructs the members header, if you copy it to themes/your-theme/buddypress/members/single/cover-image-header.php you can edit it and insert a button in there.

    #274393
    kama
    Participant

    I’m thinking to use Formidable Forms for the user registration, and they offer this as an option:

    Don’t require a unique email#
    This can be used alongside a plugin that allows multiple user accounts to be registered to the same email address. This will remove the error added to the email field for a non-unique email address. Replace 50 with the ID of your Email Address field.

    add_filter( 'frm_validate_field_entry', 'remove_email_error', 25, 3 );
    function remove_email_error( $errors, $field, $value ) {
        $email_field_id = 50;
        if ( $field->id == $email_field_id && isset( $errors[ 'field'. $field->id ] ) && $errors['field'. $field->id] == 'This email address is already registered.' ) {
          unset( $errors['field'. $field->id] );
        }
      return $errors;
    }

    So I’m just curious if this would work with Buddypress.

    #274387
    r-a-y
    Keymaster

    I’m not an expert on GDPR, but what are other large sites like Twitter doing about this? Twitter’s user handle is approximately the same as BP’s username.

    If you want BuddyPress to use something else for the profile URL, you can set the username in the user_nicename DB field and BuddyPress will use that for the user profile URL.

    Keep in mind that this might break whatever custom configurations you might have on your install.

    If you’d rather not mess with altering the data in the user DB columns, you can also potentially filter 'bp_core_get_user_domain' and 'bp_core_set_uri_globals_member_slug'.

    View this ticket for more info:
    https://buddypress.trac.wordpress.org/ticket/6694

    If you wanted to use a plugin to change the profile URL to use the user ID, you can try using a plugin like this (untested):

    LH Number User Nicename

    Reminder: Always test in a development environment before deploying major changes on a live site.

    #274373
    VeeLow
    Participant

    Nobody? Was it TL;DR?

    One sentence summary: BuddyPress provides @-mention names for my two administrator users that do not correspond to ANY actual names listed anywhere in those user profiles: how can I fix this problem?

    #274371
    Mathieu Viet
    Moderator

    Hi @aaronpods,

    Are you really sure it’s the 2017 theme that is activated ? Because if you look at the console messages in this screencap http://smiling.wpengine.com/wp-content/uploads/2018/06/Screen-Shot-2018-06-11-at-11.32.56-AM.png the theme Divi is activated and tries to load wp-content/themes/Divi/js/buddypress.min.js

    Please, try to flush your cache if you use a cache plugin, and activate TwentySeventeen to see if it fixes the issue.

Viewing 25 results - 6,426 through 6,450 (of 69,044 total)
Skip to toolbar