Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,901 through 9,925 (of 69,119 total)
  • Author
    Search Results
  • #255595
    @mercime
    Participant
    #255591
    Slava Abakumov
    Moderator

    Fixed in BuddyPress 2.6.1.1 released minutes ago.

    #255581

    In reply to: Buddypress

    kizzpatrick
    Participant

    Thank Sharmavishal,

    I would like to provide the dashboard or a private page for the group where only users of that group will be able to download the package, it’s not digital download it is just a zipped folder they will have to download.

    the problem with BuddyPress is that when you create a private group, they can be seen by other users who aren’t in the group even though they can’t view their information but due to competition purpose I don’t want to allow other members to see all the groups. I want only members who are in that group to be able to see their group and I would like to allow the group administrator to add users on the front page, not by invitation. I would also like to remove that site activity panel because I don’t want to appear like a social network and I don’t want to allow comment.

    is there a plugin or a way to customize BuddyPress to meet with this requirement
    Thanks

    #255575

    In reply to: Crop cover photo

    danbp
    Participant

    Please check the forum before asking for a same question posted a few hours before yours!

    How do you setup the crop tool on the Cover Image upload?

    Closing this topic as duplicate.

    #255571
    danbp
    Participant

    Deactivate loco translate and redo what i described previously.
    Search also for evtl. issues mentionned on loco translate support.

    Aside there is no reason to use that plugin if you don’t translated scecificcally BuddyPress to your nedd. sv_SE.po/mo are loaded automatically.
    If despite this, you use your own translation version, see how to prevent your translation to be overidden. It’s explained in one of the sticky topics on the plugin support.

    #255566
    Paul Wong-Gibbs
    Keymaster

    Yep, we missed a bug in testing. Will be fixed in 2.6.1.1 release later today.

    We’re very sorry.

    Bug report is https://buddypress.trac.wordpress.org/ticket/7153

    #255558

    In reply to: Buddypress

    sharmavishal
    Participant

    rest all can be done with buddypress private groups….regarding this “view the package we sent them and be able to download them” do you want to offer digital downloads?

    #255557

    In reply to: XProfile problem

    sharmavishal
    Participant
    #255554
    danbp
    Participant

    I’m unable to reproduce your issue. WP and BP language update is working properly.

    BuddyPress har uppdaterats utan problem.

    Guess it is this who genrate now an issue.
    I have tried to update the po file with a new mo file but no difference

    Po & mo are not the same file, and mo is compiled…

    Remove all bp language files from /language/
    Deactivate and reactivate BP – this will force BP to reach his translation.

    danbp
    Participant

    @fifnicke,

    do you have an issue with WDS BuddyPress Cover Photo ? If yes, please open a ticket on that gist. Or at least give some information about what you’re doing.

    #255548
    Slava Abakumov
    Moderator
    #255546
    Henry Wright
    Moderator

    bp_activity_add() will add an item to the activity stream. It sounds like you want to add a notification. Try bp_notifications_add_notification():

    bp_notifications_add_notification

    danbp
    Participant

    Hi,

    please don’t double post ! Closing this topic. Discussion goes here:

    Getting error saying Buddypress Group photo large?

    #255537
    Slava Abakumov
    Moderator

    Yes, this is a known issue, likely introduced in BuddyPress 2.6.1. Will be fixed asap.

    #255535
    @mercime
    Participant

    @destac There are different ways to implement the new feature. For the screenshot, I did it in 4 simple steps.

    Note that you might need to adjust how the widgets are registered, named, or styled based on your theme.

    1. Registered three new widget areas in the child/theme’s functions.php file.

    <?php // Only add this line if you are adding this to an empty functions.php file
    /**
     * Register three widget areas for Members front page.
     *
     * @since My Child Theme 2.6.0
     */
    function my_child_theme_widgets_init() {
    	register_sidebar( array(
    		'name'          => __( 'bp-members-1st', 'my-child-theme' ),
    		'id'            => 'bp-members-1st',
    		'description'   => __( 'Appears on each member\'s front page.', 'my-child-theme' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    
    	register_sidebar( array(
    		'name'          => __( 'bp-members-2nd', 'my-child-theme' ),
    		'id'            => 'bp-members-2nd',
    		'description'   => __( 'Appears on each member\'s front page.', 'my-child-theme' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    
    	register_sidebar( array(
    		'name'          => __( 'bp-members-3rd', 'my-child-theme' ),
    		'id'            => 'bp-members-3rd',
    		'description'   => __( 'Appears on each member\'s front page.', 'my-child-theme' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    }
    add_action( 'widgets_init', 'my_child_theme_widgets_init' );

    Adjust items registered in child theme based on how your theme is setting up the widget areas.

    2. Created a new file front.php which should be located as follows: wp-content/my-child-theme-folder/buddypress/members/single/front.php
    (Create the buddypress, members, and single directories/folders if you do not have those in your theme yet.)

    Added the following in the front.php file:

    <?php
    /**
     * BuddyPress - Members Front Page
     *
     * @since My Child Theme 2.6.0
     */
    ?>
    
    <div class="bp-member-front-wrap">
    
    	<div class="bp-member-front-1">
    		<?php dynamic_sidebar( 'bp-members-1st' ); ?>
    	</div>
    
    	<div class="bp-member-front-2">
    		<?php dynamic_sidebar( 'bp-members-2nd' ); ?>
    	</div>
    
    	<div class="bp-member-front-3">
    		<?php dynamic_sidebar( 'bp-members-3rd' ); ?>
    	</div>
    
    </div>

    3. Added some styles:

    .bp-member-front-wrap {
    	clear: both;
    	margin-bottom: 2em;
    }
    
    @media screen and (min-width: 46em) {
    	.bp-member-front-wrap {
    		clear: both;
    		margin-bottom: 1em;
    	}
    	.bp-member-front-1,
    	.bp-member-front-2 {
    		float: left;
    		margin-right: 1.5%;
    		width: 32%;
    	}
    	.bp-member-front-3 {
    		float: left;
    		width: 32%;
    	}
    }

    4. Went to Appearance > Widgets and add widgets to the Member Front Page Widget Areas.

    As mentioned above, there are other ways to implement this new feature. Happy customizing!

    #255534
    sharmavishal
    Participant

    Installing Group and Sitewide Forums

    read the above carefully

    #255525
    r-a-y
    Keymaster

    BuddyPress 2.6.1 was just released, which fixes this issue.

    wordpress.org still needs to be updated, but you can grab the release here:
    https://downloads.wordpress.org/plugin/buddypress.2.6.1.zip

    #255518
    r-a-y
    Keymaster

    I think your question would be better suited on the bbPress forums since bbPress provides forum functionality for BuddyPress groups:
    https://bbpress.org/forums

    danbp
    Participant

    Hi @navyspitfire,

    when you pick up code somewhere, you should also read the comments. The solution to your issue was in one of them.

    Here is what wil exclude site admin from members directory and exclude also the logged_in user. The total member count will also be adjusted correctly on All members [x] tab and for the pagination count. $count-2 instead of $count-1 do the trick.

    Excluded members, incl. admin, are of course excluded from search.

    function bpex_hide_admin_on_member_directory( $qs=false, $object=false ){
    
    	// Id's to hide, separated by comma
    	$excluded_user = '1' ;
    
    	// hide to members & friends 
    	if($object != 'members' && $object != 'friends')
    	return $qs;
    	
    	$args = wp_parse_args($qs);
    	
    	if(!empty($args['user_id']))
    	return $qs;	
    	
    	if(!empty($args['exclude']))
    	$args['exclude'] = $args['exclude'].','.$excluded_user;
    	else
    	$args['exclude'] = $excluded_user;
    	
    	$qs = build_query($args);
    	
    	return $qs;
    	
    }
    add_action( 'bp_ajax_querystring','bpex_hide_admin_on_member_directory', 20, 2 );
    
    // once admin is excluded, we must recount the members !
    function bpex_hide_get_total_filter( $count ){
    	return $count-2;
    }
    add_filter( 'bp_get_total_member_count', 'bpex_hide_get_total_filter' );
    
    function bpex_exclude_loggedin_user( $qs = false, $object = false ) {
    
     //list of users to exclude
     if( !is_user_logged_in() )
         return $qs;
    
     //if the user is logged in , let us exclude her/him
     $excluded_user=  get_current_user_id();
      
     if( $object !='members' )//hide for members only
    	return $qs;
      
     $args=wp_parse_args($qs);
      
     //check if we are listing friends?, do not exclude in this case
     if( !empty( $args[ 'user_id' ] ) )
    	return $qs;
      
     if( !empty( $args['exclude'] ) )
    	$args['exclude'] = $args['exclude'] .','. $excluded_user;
     else
    	$args['exclude'] = $excluded_user;
      
    	$qs = build_query( $args );
      
     return $qs;
      
    }
    add_action('bp_ajax_querystring','bpex_exclude_loggedin_user', 20, 2 );

    Codex Reference

    Playing with the user’s ID in different contexts

    #255512
    snorklebum
    Participant
    #255511
    pfeufer
    Participant

    Hi,
    I’m using the BRIDGE theme. I am using the UserPro plugin, but that handles user profiles and avatars and coded to work with Buddypress.

    Thanks,
    John

    #255499
    bogski
    Participant

    It does indeed. There are a few development teams that specialise in both pieces of software. It is pretty good for it out of the box but once you start getting specific with your events and user management you need some custom code.

    We have a small chunk of code that will grab new users, work out which event they have signed up for and insert them into 2 BuddyPress groups based on the location of the event they have signed up for.

    Im not a PHP developer though so im not too sure of the exact details of how it works together.

    To be honest though, i never had chance to look into alternatives to either Event Espresso or BuddyPress. The website and plugins were already installed when i started working on the project. Most of what i have learnt about them both so far has been trial, error, headbutt keyboard and repeat.

    I have worked out though that it is definitely an issue with BuddyPress and EE (after all that). It seems the BuddyPress login and registration takes precedence over the Event Espresso one.

    It also seems to be creating new users as moderators as well. But thats a different story and isnt a BuddyyPress issue.

    PhilB

    #255490
    sharmavishal
    Participant

    dont use Event Espresso….have used events organizer and events manager this 2 plugins which support buddypress…does Event Espresso support buddypress?

    #255488
    bogski
    Participant

    Thanks for that. Im still trying to work out where it is breaking so im just asking the same question on all support forums for the plugins that i use.

    A shot in the dark, but can you think of anything that could cause the EE and BuddyPress to stop working? I know that they are both popular plugins and people do use them in conjunction with each other.

    Phil

    #255486
    zzkamikazezz
    Participant

    previous discussion I found, I could be running in to the same issue, it may be due to deleting users asI am still building and testing the site:
    https://buddypress.org/support/topic/why-does-group-count-not-go-down-when-you-delete-group/

    However I notice it ays there are 8 groups, 7 of which are ‘my groups’, but only 5 groups are really on my site now.

Viewing 25 results - 9,901 through 9,925 (of 69,119 total)
Skip to toolbar