Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,176 through 17,200 (of 68,918 total)
  • Author
    Search Results
  • #179620
    divydovy
    Participant

    Just wasted $19 to find out that plugin only works on multisite with buddypress, not a single site with buddypress.

    Ambiguous product description and lack of an easy refund mechanism makes me warn you off wpmudev.

    #179618
    Henry Wright
    Moderator

    @landwire I see! That explains it.

    Is that something that can be taken to core developers and asked if we can enhance the filter functionality

    You could always ask? Trac is the best place to do that: https://buddypress.trac.wordpress.org/

    #179612

    In reply to: BuddyPress e Bootstrap

    stuffgrid
    Participant

    Please Support, help-me the right way to enqueue buddypress with bootstrap <3

    #179604
    keithschmader
    Participant

    @cspowers try the following

    //* Remove the entry meta in the entry header (requires HTML5 theme support)
    remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );

    I too am working on getting rid of the wonky layout issues, it is taking some time. The genesis connect plugin for buddypress is misleading in that it has been recently updated, but is worthless for the latest version of the genesis framework with the latest version of buddypress.

    Will keep you posted if I come across anything else as I work on this.

    #179597
    xxxTRISTAMxxx
    Participant

    Update:
    Problem #1 is for all pages: Members, Groups, Activate, Register

    AND I have added the Members, Groups, Activate, Register Pgs and assigned them to the proper area in the pages section of buddypress.

    #179589
    BuddyBoss
    Participant

    Did you follow the part titled “Advanced Optional Step: Removing the database tables”.

    That is the key to your question. The settings are all stored in the database tables. BuddyPress does not have an option to purge the database settings upon deactivation. You have to manually delete the tables.

    Be careful! You could screw up your whole site if you remove the wrong tables. Definitely back up your database before attempting any of that.

    #179587
    BuddyBoss
    Participant

    @iameverywhere

    I have thought about this a lot as well. BuddyPress spam is SO obvious for a human to figure out. You can detect spammers with almost perfect accuracy in just a few seconds. They all do the same thing. They create an account, then post garbage links. If you have Groups enabled, they create groups full of links in the description. I don’t know of a plugin that will do this, but the best way to block BP spam I think would be to put users in moderation if they post links to groups or activity, just like the setting we have for blog post comments.

    danbp
    Participant

    Hi guys !

    Most of the publishing stuff is regulated from within WordPress settings.
    And allowing blog and forums activity comments is a setting of BuddyPress.

    If you don’t want your users writing notices (what’s new ?), the only thing that is published by buddyPress, you can remove the notice form from the template or add a conditionnal if/else for the allowed members…

    @boblebad, FYI buddypress is not a forum software. The forum plugin is bbPress.

    #179577
    sergeantdutch
    Participant

    Yeah, I’m suffering the exact same issue.
    Wordpress 3.8.1, Buddypress 1.9.2

    At first I thought it was because of an update to my Simplepress plugin, but that doesn’t seem to be the issue.

    I’d hazard a guess it appeared after the latest BP update.

    boblebad
    Participant

    That’s something i would like to know too.

    I need to have free “members” that can’t interact with the forum and groups, it’s okay that they can read/view them, but not answer or create new topics – that’s only for paying members.

    It is actually weird that this feature isn’t in BuddyPress out-of-the-box, most other forum software has it.

    All the best
    Carsten

    #179571
    danbp
    Participant
    #179565
    landwire
    Participant

    Ok, will try that.

    BTW: what is the difference between the following filters:

    bp_legacy_theme_ajax_querystring and bp_ajax_querystring as per documentation here:

    bp_ajax_querystring()

    I guess I find the

    To filter ajax:

    bit odd. Maybe I should use that filter?

    #179562
    Henry Wright
    Moderator

    If you have links like this example.com/members/username then root profiles are disabled. If you have this example.com/username then root profiles are enabled.

    Try this:

    function my_filter( $query = false, $object = false ) {
        if ( ! is_page( 'office' ) )
            return $query;
    
        $users = get_users( 'role=YOUR-ROLE-TO-EXCLUDE' );
    
        $exclude = implode( ',', $users );
     
        if ( $object != 'members' )
            return $query;
    
        $args = wp_parse_args( $query );
    
        if ( ! empty( $args['user_id'] ) )
            return $query;
    
        if ( !empty( $args['exclude'] ) )
            $args['exclude'] = $args['exclude'] . ',' . $exclude;
    
        else
            $args['exclude'] = $exclude;
    
        $query = build_query( $args );
    
        return $query;
    
    }
    add_filter( 'bp_ajax_querystring', 'my_filter', 20, 2 );

    Note: Change YOUR-ROLE-TO-EXCLUDE to the role you want to exclude. i.e. Author

    Adapted from here:

    Exclude Users from Members directory on a BuddyPress based social network

    #179553
    landwire
    Participant

    Henry, would just like your thought on the following.
    I went down a different route with the above, not sure if that is recommended though:

    I created a shortcode like so, basically putting the whole new office-index.php into it. Then just put the shortcode into a page called “office” and it looks great out of the box – all formatting etc intact!

    See: http://2013d.landwire.net/office/

    You can compare all three now. There still all live.

    Do you think it’s ok to do it like that?

    function lw_office_directory( $atts ) {
    	 do_action( 'bp_before_directory_members_page' ); ?>
    
    <div id="buddypress">
    
    	<?php do_action( 'bp_before_directory_members' ); ?>
    
    	<?php do_action( 'bp_before_directory_members_content' ); ?>
    
    	<div id="members-dir-search" class="dir-search" role="search">
    		<?php bp_directory_members_search_form(); ?>
    	</div><!-- #members-dir-search -->
    
    	<?php do_action( 'bp_before_directory_members_tabs' ); ?>
    
    	<form action="" method="post" id="members-directory-form" class="dir-form">
    
    		<div class="item-list-tabs" role="navigation">
    			<ul>
    				<li class="selected" id="members-all"><a href="<?php bp_members_directory_permalink(); ?>"><?php printf( __( 'All Members', 'buddypress' )); ?></a></li>
    
    				<?php if ( is_user_logged_in() && bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>
    					<li id="members-personal"><a href="<?php echo bp_loggedin_user_domain() . bp_get_friends_slug() . '/my-friends/'; ?>"><?php printf( __( 'My Friends <span>%s</span>', 'buddypress' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ); ?></a></li>
    				<?php endif; ?>
    
    				<?php do_action( 'bp_members_directory_member_types' ); ?>
    
    			</ul>
    		</div><!-- .item-list-tabs -->
    
    		<div class="item-list-tabs" id="subnav" role="navigation">
    			<ul>
    				<?php do_action( 'bp_members_directory_member_sub_types' ); ?>
    
    				<li id="members-order-select" class="last filter">
    					<label for="members-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label>
    					<select id="members-order-by">
    						<option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>
    						<option value="newest"><?php _e( 'Newest Registered', 'buddypress' ); ?></option>
    
    						<?php if ( bp_is_active( 'xprofile' ) ) : ?>
    							<option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>
    						<?php endif; ?>
    
    						<?php do_action( 'bp_members_directory_order_options' ); ?>
    					</select>
    				</li>
    			</ul>
    		</div>
    
    		<div id="members-dir-list" class="members dir-list">
    			<?php bp_get_template_part( 'members/offices/offices-loop' ); ?>
    		</div><!-- #members-dir-list -->
    
    		<?php do_action( 'bp_directory_members_content' ); ?>
    
    		<?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ); ?>
    
    		<?php do_action( 'bp_after_directory_members_content' ); ?>
    
    	</form><!-- #members-directory-form -->
    
    	<?php do_action( 'bp_after_directory_members' ); ?>
    
    </div><!-- #buddypress -->
    
    <?php do_action( 'bp_after_directory_members_page' );
    }
    add_shortcode('lw_office_directory', 'lw_office_directory');
    #179550
    Henry Wright
    Moderator

    I think some of the visual differences could be due to CSS. Fundamentally each of these are different. Take the offices-index template for example. If you view the source you’ll see the body classes:

    page page-id-1100 page-template-default masthead-fixed full-width singular no-js

    Where as if you view the source of the members directory you should see body classes

    directory members buddypress masthead-fixed full-width singular no-js

    If the theme you’re using makes use of the body class when styling body.page { // styles ... } then that could be why it looks different?

    #179548
    landwire
    Participant

    That works ok now. I basically used the page.php template and replaced the whole loop with the page-office-loop.php file contents and saved that as page-office-loop.php. Does still not look like the members page though.

    Maybe take a look if you have a minute. One also shows up a search box while the other does not. Strange. I did NOT use <?php get_footer( ‘buddypress’ ); ?> or <?php get_header( ‘buddypress’ ); ?> as the page template already loads some header/footer.

    Modified: http://2013d.landwire.net/offices-index/
    Original – though I took members count out of tab: http://2013d.landwire.net/members/
    S

    #179546
    Henry Wright
    Moderator

    You’ll need to add your BuddyPress header and footer to the page-office-loop.php file. For example:

    <?php get_header( 'buddypress' ); ?>
    
    <!-- bits and bobs here -->
    
    <?php get_footer( 'buddypress' ); ?>
    #179545
    landwire
    Participant

    Hmm, that works the same as the page template approach I made earlier.

    The display is rather blank though, no footer/header etc. And I had a typo before in my code, so your approach highlighted that mistake!

    Is there a way that I could just use a standard template and “inject” the buddypress members content there. Basically just like a copy and paste of the page-offices-loop.php into the wordpress text editor?

    Sascha

    #179542
    Fuzzielogix
    Participant

    I am receiving mails from other sources i.e mail clients , gmail etc to the mail address, so still unsure whether it’s a wordpress/buddypress issue or server side issue ….

    #179535
    @mercime
    Participant

    @fuzzielogix Have you checked if registration works if BP is deactivated? If it still doesn’t work, then you need to resolve the issue with your hosting. It registration works with BP deactivated, then check out how to resolve the issue in the email section at https://codex.buddypress.org/legacy/faq/

    @mercime
    Participant

    @simple-man BP’s default style for the Member and Group widget avatars have been superseded by your theme’s style where it changed the avatar’s width to auto in one area and in another area, changed it to max-width: 100%. You can add the following to the stylesheet of your child theme

    .widget.buddypress ul.item-list img.avatar {
    width: 20px;
    }
    #179533
    thom7000
    Participant

    Hi Thanks for the response I have done this but when I re-install buddypress the old settings still show up how do i change to default everything??

    #179532
    @mercime
    Participant
    #179519
    BuddyBoss
    Participant
    #179518
    BuddyBoss
    Participant

    I would suggest checking out this BuddyPress ticket:
    https://buddypress.trac.wordpress.org/ticket/5140

    That’s likely the cause. This bug has been documented.

Viewing 25 results - 17,176 through 17,200 (of 68,918 total)
Skip to toolbar