Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,776 through 6,800 (of 69,106 total)
  • Author
    Search Results
  • #273216
    Paul Wong-Gibbs
    Keymaster

    We don’t have enough information to figure out what the cause might be yet, I think we will need to try to reproduce the problem, but it doesn’t seem to be unique to your site, so I’ve created a bug report at https://buddypress.trac.wordpress.org/ticket/7844 — please keep an eye on that for updates.

    #273212
    Paul Wong-Gibbs
    Keymaster

    This might be related to https://buddypress.trac.wordpress.org/ticket/7837

    Were you using the new Nouveau template pack when you had this problem?

    Paul Wong-Gibbs
    Keymaster

    Bug: https://buddypress.trac.wordpress.org/ticket/7843

    Keep an eye on that. Sorry for the inconvenience.

    #273208
    Paul Wong-Gibbs
    Keymaster

    Bug: https://buddypress.trac.wordpress.org/ticket/7843

    Keep an eye on that, and sorry for the inconvenience in the meanwhile.

    lifeflowdan
    Participant

    Answered my own question. It was some sort of code conflict between some existing jquery code I wrote and buddypress, but it was nothing a little conditional tagging couldn’t solve.

    #273203
    mrlen
    Participant

    Thanks @vapvarun. I checked out that link and started to follow the instructions for migrating. But then I found that I am already using bbPress 2.5.14. So it seems I am not using the old bbPress.

    Also, when I get to step 3:

    [code]
    (3) Remove “Forums” page from BuddyPress
    In the the WP admin dashboard navigate to “Settings > BuddyPress“. Click on the “Pages” tab.
    Under “Discussion Forums“, select “None” and save.
    [/code]

    There is no such “Discussion Forums” section.

    So I think there must be some other problem.

    #273202
    Varun Dubey
    Participant

    @mrlen Legacy Forums support is removed with BuddyPress v3.0.0 and theme also need to update accordingly. Please check with your theme support
    For details, you can check https://bpdevel.wordpress.com/2017/12/07/legacy-forums-support-will-be/

    #273201
    Varun Dubey
    Participant

    @glenndavis007 Login and Logout menu are still part of BuddyPress Menu, you can enable inside your menus from Appearance >> Menus https://drive.google.com/a/wbcomdesigns.com/file/d/1us7uVwYN3QsPHbQ_olPOrR7z4RRnxZLE/view?usp=drivesdk

    #273176
    panosa1973
    Participant

    Is this a bug? I’ve been trying to figure this out for days. Why does my custom member directory revert to the default when I sort it??? I load it, it works fine and outputs the filtered users. I sort it by Alphabetical order (for example) and it gives me all users again. Does anyone have an idea why this is happening?

    [members-loop-2.php]

    <?php
    /**
     * BuddyPress - Members Loop
     *
     * Querystring is set via AJAX in _inc/ajax.php - bp_legacy_theme_object_filter()
     *
     * @package BuddyPress
     * @subpackage bp-legacy
     */
    
    /**
     * Fires before the display of the members loop.
     *
     * @since 1.2.0
     */
    do_action( 'bp_before_members_loop' ); ?>
    
    <?php if ( bp_get_current_member_type() ) : ?>
    	<p class="current-member-type"><?php bp_current_member_type_message() ?></p>
    <?php endif; ?>
    
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) .'&include=' .get_user_matches()  ) ) : ?>
    
    	<div id="pag-top" class="pagination">
    
    		<div class="pag-count" id="member-dir-count-top">
    
    			<?php //bp_members_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="member-dir-pag-top">
    
    			<?php bp_members_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    	<?php
    
    	/**
    	 * Fires before the display of the members list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_before_directory_members_list' ); ?>
    
    	<ul id="members-list" class="item-list" aria-live="assertive" aria-relevant="all">
    
    	<?php while ( bp_members() ) : bp_the_member(); ?>
    		<li <?php bp_member_class(); ?>>
            
    			<div class="item-avatar">
    				<a href="<?php bp_member_permalink(); ?>"><?php bp_member_avatar(); ?></a>
    			</div>
    
    			<div class="item">
    				<div class="item-title">
    					<a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a>
    
    					<?php if ( bp_get_member_latest_update() ) : ?>
    
    						<span class="update"> <?php bp_member_latest_update(); ?></span>
    
    					<?php endif; ?>
    
    				</div>
    
    				<div class="item-meta"><span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_member_last_active( array( 'relative' => false ) ) ); ?>"><?php bp_member_last_active(); ?></span></div>
    
    				<?php
    
    				/**
    				 * Fires inside the display of a directory member item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_members_item' ); ?>
    
    				<?php
    				 /***
    				  * If you want to show specific profile fields here you can,
    				  * but it'll add an extra query for each member in the loop
    				  * (only one regardless of the number of fields you show):
    				  *
    				  * $xGender =  bp_member_profile_data( 'field=Gender' );
    				  */
    				  
    				?>
    			</div>
    
    			<div class="action">
    
    				<?php
    
    				/**
    				 * Fires inside the members action HTML markup to display actions.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_members_actions' ); ?>
    
    			</div>
    
    			<div class="clear"></div>
    		</li>
    	<?php endwhile; ?>
    
    	</ul>
    
    	<?php
    
    	/**
    	 * Fires after the display of the members list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_after_directory_members_list' ); ?>
    
    	<?php bp_member_hidden_fields(); ?>
    
    	<div id="pag-bottom" class="pagination">
    
    		<div class="pag-count" id="member-dir-count-bottom">
    
    			<?php //bp_members_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="member-dir-pag-bottom">
    
    			<?php bp_members_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    <?php else: ?>
    
    	<div id="message" class="info">
    		<p><?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p>
    	</div>
    
    <?php endif; ?>
    
    <?php
    
    /**
     * Fires after the display of the members loop.
     *
     * @since 1.2.0
     */
    do_action( 'bp_after_members_loop' );

    [index-2.php]
    ‘<?php
    /**
    * BuddyPress – Members
    *
    * @package BuddyPress
    * @subpackage bp-legacy
    */

    /**
    * Fires at the top of the members directory template file.
    *
    * @since 1.5.0
    */
    do_action( ‘bp_before_directory_members_page’ ); ?>

    <div id=”buddypress”>

    <?php

    /**
    * Fires before the display of the members.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_before_directory_members’ ); ?>

    <?php

    /**
    * Fires before the display of the members content.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_before_directory_members_content’ ); ?>

    <?php /* Backward compatibility for inline search form. Use template part instead. */ ?>
    <?php if ( has_filter( ‘bp_directory_members_search_form’ ) ) : ?>

    <div id=”members-dir-search” class=”dir-search” role=”search”>
    <?php bp_directory_members_search_form(); ?>
    </div><!– #members-dir-search –>

    <?php else: ?>

    <?php bp_get_template_part( ‘common/search/dir-search-form’ ); ?>

    <?php endif; ?>

    <?php
    /**
    * Fires before the display of the members list tabs.
    *
    * @since 1.8.0
    */
    do_action( ‘bp_before_directory_members_tabs’ ); ?>

    <form action=”” method=”post” id=”members-directory-form” class=”dir-form”>

    <div class=”item-list-tabs” id=”subnav” aria-label=”<?php esc_attr_e( ‘Members directory secondary navigation’, ‘buddypress’ ); ?>” role=”navigation”>

      <?php

      /**
      * Fires inside the members directory member sub-types.
      *
      * @since 1.5.0
      */
      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

      /**
      * Fires inside the members directory member order options.
      *
      * @since 1.2.0
      */
      do_action( ‘bp_members_directory_order_options’ ); ?>
      </select>

    </div>

    <h2 class=”bp-screen-reader-text”><?php
    /* translators: accessibility text */
    _e( ‘Members directory’, ‘buddypress’ );
    ?></h2>

    <div id=”members-dir-list” class=”members dir-list”>
    <?php bp_get_template_part( ‘members/members-loop-2’ ); ?>
    </div><!– #members-dir-list –>

    <?php

    /**
    * Fires and displays the members content.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_directory_members_content’ ); ?>

    <?php wp_nonce_field( ‘directory_members’, ‘_wpnonce-member-filter’ ); ?>

    <?php

    /**
    * Fires after the display of the members content.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_after_directory_members_content’ ); ?>

    </form><!– #members-directory-form –>

    <?php

    /**
    * Fires after the display of the members.
    *
    * @since 1.1.0
    */
    do_action( ‘bp_after_directory_members’ ); ?>

    </div><!– #buddypress –>

    <?php

    /**
    * Fires at the bottom of the members directory template file.
    *
    * @since 1.5.0
    */
    do_action( ‘bp_after_directory_members_page’ );

    #273175
    ma3ry
    Participant

    Thank you for the suggestion. I deactivated the XProfile plugin first and ran the backup job – still had the error, so I deactivated the BuddyPress plugin and ran the backup job again. I still have the error. I guess I’m going to have to look into this further.

    One thing I did notice when I deactivated the XProfile plugin, I retained all my current extra fields. The only one I had a problem with is birthdate. It used to show age, not birthdate. Perhaps there is a plugin that will deal with just this issue. I’ll have to look around.

    Thank you again for all your excellent help. I really appreciate it!!!!

    #273171
    Venutius
    Moderator

    Ah ok, but you think this is related to BuddyPress?

    #273165
    ma3ry
    Participant

    Is anyone likely to update BuddyPress Xprofile Custom Fields?

    r-a-y
    Keymaster

    I can’t duplicate gcmaryland’s problems with group meta.

    For those with problems, can you post what group plugins you are using and what the expected behavior is? Please list clear steps to duplicate. Imagine a person that does not know anything about BuddyPress and WordPress and expect that person to duplicate the problem.

    Update – duplicated the problem with the bp-nouveau template pack. I have some tentative fixes that I’ve added to the ticket.

    However, here’s the easiest fix you can add to your site for now:
    https://buddypress.trac.wordpress.org/attachment/ticket/7837/7837.01.patch

    Varun Dubey
    Participant

    @kelvinnm

    add_filter( 'wp_mail_from',      $admin_email_filter );
    add_filter( 'wp_mail_from_name', $from_name_filter );

    is defined inside https://github.com/boonebgorges/buddypress-group-email-subscription/blob/master/bp-activity-subscription-digest.php
    which you can override via functions or try
    try https://wordpress.org/plugins/wp-mailfrom-ii/

    gcmaryland
    Participant

    Posted to: https://buddypress.trac.wordpress.org/ticket/7837#ticket with code sample

    (First issue, so please let me know if this is right – thanks!)

    #273158
    Varun Dubey
    Participant

    @ma3ry BuddyPress Xprofile Custom Fields have some security loopholes and it will need dedicated time to fix all issues and make it compatible with the latest version.

    @venutius
    check it once if you have time. It has 6000+ active install, needs some attention.

    #273153
    Varun Dubey
    Participant

    @ma3ry there is a temp fix for BuddyPress Xprofile Custom Fields Type by @venutius you can check it.
    https://wordpress.org/support/topic/warning-breaks-with-bp-3-0/

    gcmaryland
    Participant

    Issue confirmed for some of our sites as well. Rolling back BP to 2.9.4 fixes issues in both the previous and current versions of WP. It appears to be linked to sites currently using custom group meta through an active or inactive plug-ins. I’ve noticed that removing the line: add_filter( ‘groups_custom_group_fields_editable’, ‘group_header_fields_markup’ ); from active plug-ins using the group meta template (https://codex.buddypress.org/plugindev/how-to-edit-group-meta-tutorial/) breaks the plug-in and allows the group pages to be loaded correctly. I’ve noticed that all of these functions have the $wpdb object referenced in (https://buddypress.trac.wordpress.org/ticket/7834). Perhaps there’s a connection? Otherwise, it still appears to be limited to sites using custom group meta plug-ins.

    #273151
    wbcomdesigns
    Participant

    @hanza3 multiple layouts can be created for profile view and it can be wrapped with membership conditions. We had tried a similar approach to our BuddyPress theme which offers members to choose their profile layout from their profile and site admin can also set the default layout for members. With some customization, it can be used with membership levels.

    #273148
    m1000
    Participant

    Yes, I know. I have enabled buddypress legacy and when I go to group manage -> forum and I try to enable forum it stays inactive – https://imgur.com/Bc5DTL4 I also selected child forum for the group.
    I have enabled group forums – https://imgur.com/jakMcKg

    Venutius
    Moderator

    hmm, with the recent changes in WP it’s not that straightforward. You’d need to download the files from the BP SVN here https://plugins.svn.wordpress.org/buddypress/tags/2.9.4/ and for that you would need an SVN browser such as tortoise SVN. One you had the files you would also need FTP access to your site, to rename the current BP directory in plugins to something else (buddypress-3.0 for example) and then copy the 2.9.4 files into a new buddypress directory. then you could test it.

    #273144
    m1000
    Participant

    Looks like there was removed groups forum activation from create.php

    				<?php if ( bp_is_active( 'forums' ) ) : ?>
    
    					<h4><?php _e( 'Group Forums', 'buddypress' ); ?></h4>
    
    					<?php if ( bp_forums_is_installed_correctly() ) : ?>
    
    						<p><?php _e( 'Should this group have a forum?', 'buddypress' ); ?></p>
    
    						<div class="checkbox">
    							<label for="group-show-forum"><input type="checkbox" name="group-show-forum" id="group-show-forum" value="1"<?php checked( bp_get_new_group_enable_forum(), true, true ); ?> /> <?php _e( 'Enable discussion forum', 'buddypress' ); ?></label>
    						</div>
    					<?php elseif ( is_super_admin() ) : ?>
    
    						<p><?php printf( __( '<strong>Attention Site Admin:</strong> Group forums require the <a href="%s">correct setup and configuration</a> of a bbPress installation.', 'buddypress' ), bp_core_do_network_admin() ? network_admin_url( 'settings.php?page=bb-forums-setup' ) :  admin_url( 'admin.php?page=bb-forums-setup' ) ); ?></p>
    
    					<?php endif; ?>
    
    				<?php endif; ?>
    #273141
    Slava Abakumov
    Moderator

    Hello,

    Starting from BuddyPress 3.0 we have removed support for the deprecated and unsupported bbPress 1.x that was bundled with BuddyPress.

    As written in our release post:

    Most notably, the Legacy Forums component has been removed after 9 years of service. If your site was using Legacy Forums, you need to migrate to the bbPress plugin.

    And here is our general bbPress 2.x forum installation guide:

    Installing Group and Sitewide Forums

    So, @m1000, please follow the migration guide and move everything forum-related to bbPress 2.x, which is faster and overall works better.

    JanDieckmann
    Participant

    Hello,

    yesterday it worked fine, today I get the error message

    Oops! That page can’t be found.
    It looks like nothing was found at this location. Maybe try a search?

    for all lists of group activities. The groups are still correctly listed in my profile but when clicking on them, the don’t show the list of activities any more.

    Between both situation was the update this morning to BuddyPress Version 3.0.0. WordPress is running on 4.9.6. I use a Twenty Fifteen Child theme, but it happens also after changing to an official theme. I deactivated all plugins and reactivate only BuddyPress but see no difference.

    The groups are still there and also there activities, I can see and open them from the Dashboard.

    I changed the permalink settings several times but it has no influence.

    Any suggestions?

    Bye
    Jan

    Venutius
    Moderator

    You should raise this on BuddyPrss Trac as a bug.

Viewing 25 results - 6,776 through 6,800 (of 69,106 total)
Skip to toolbar