Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 11,101 through 11,125 (of 69,016 total)
  • Author
    Search Results
  • #249008
    Toni
    Participant

    My set up for “Can I use a social login plugin for registration/login?”

    WP version 4.4.1
    PHP version 5.4.45
    BuddyPress 2.4.3
    site url http://toni-esl.com/eslbuddy

    #249007
    Andrew Tibbetts
    Participant

    Thought I had found the silver bullet here:

    https://buddypress.org/support/topic/need-to-disable-the-user-access-to-wordpress-admin-panel/#post-183537

    which includes a check for ! ( defined( 'DOING_AJAX' ) && DOING_AJAX )…still has a redirect loop when performing the ajax actions.

    The search continues…

    #248999
    Andrew Tibbetts
    Participant

    Ok, I’ve found that it is tied to my redirect function mentioned in https://buddypress.org/support/topic/only-administrator-can-change-avatar/. I’ll repeat it here for posterity:

    // keep the 'normies' out of the admin
    add_action( 'admin_init', 'custom_admin_init', 1 );
    function custom_admin_init() {
    
    	if ( is_user_logged_in() && ! current_user_can( 'administrator' ) ) {
    
    		wp_redirect( home_url() ); die();
    	}
    }

    Seems like some (ajax?) content population requires accessing the admin in someway.
    So, how to keep everyone except admins out of the admin area but still allow all this content stuff to be uninterrupted?

    #248997
    danbp
    Participant

    Community members and wp users are the same thing and are stored in an unique DB table: xx_users which is the one you can bulk import/export.

    I invite you to read through the Codex about members and what it does when it extend WP users.

    #248980
    danbp
    Participant

    Hi,

    review BuddyPress settings page for:
    Profile Settings
    Profile Photo Uploads [x] Allow registered members to upload avatars

    #248979
    Slava Abakumov
    Moderator

    Try this:

    function remove_wysiwyg($enabled, $field_id) {
        // change this field_id to the one you need to have ordinary textarea
        if ( $field_id == 22 ) 
            return false;
    
        return $enabled;
    }
    
    add_filter( 'bp_xprofile_is_richtext_enabled_for_field', 'remove_wysiwyg', 10, 2 );

    Place the code in bp-custom.php.

    #248960
    shanebp
    Moderator

    Sorry, I was answering an oft-asked question re showing up in members loop.

    You can add an activity item:
    https://codex.buddypress.org/developer/function-examples/bp_activity_add/

    You could create a custom action, but it’s more work.
    Try using activity_update as the action

    #248957
    shanebp
    Moderator

    The codex has examples of how to use BP_User_Query to filter the loop and preserve the order of ids.

    https://codex.buddypress.org/developer/bp_user_query/#code-examples

    Rionoskae
    Participant

    If i Inspect element on the page, it continues to redirect from wp-signup.php to wp-signup.php about 10-12 times before erroring out.

    And this only happens when the buddypress plugin is active.

    Any ideas?

    #248948
    Laz
    Participant

    Doesn’t work. When wp_create_user is called, it clearly doesn’t alert BuddyPress to generate a new new_member activity. Is there any hook or any function to call to create that?

    #248911

    In reply to: Error Posting Comments

    Manoj Chacko
    Participant

    I did check the theme before with twenty fifteen and the error was still there, we currently using a studiopress theme. But I checked it again with twenty fifteen and the issue remains.

    1. Which version of WordPress are you running?
    WordPress 4.3.2

    2. Did you install WordPress as a directory or subdomain install?
    Directory

    3. If a directory install, is it in root or in a subdirectory?
    Root

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    Yes, don’t remember which version it was 4.2.* I think

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes

    6. Which version of BP are you running?
    BuddyPress 2.4.3.

    7. Did you upgraded from a previous version of BP? If so, from which version?
    yes, I think it was buddypress 2.2.*

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes,
    Akismet; BuddyPress; BuddyPress Docs; BuddyPress Group Email Subscription; BuddyPress Sitewide Activity Widget; CustomPress; Google Analytics +
    ImageInject; Jetpack by WordPress.com; More Privacy Options; Multisite Plugin Manager; New Blog Templates; Site Categories; TinyMCE Advanced
    Ultimate Branding; User Role Editor; WordPress Importer; WP Author Slug; WPMU DEV Dashboard; WPMU Ldap Authentication;

    9. Are you using the standard WordPress theme or customized theme?
    Studiopress theme (Tested with twenty 15 as well)

    10. Have you modified the core files in any way?
    No
    11. Do you have any custom functions in bp-custom.php?
    No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    BBpress Version 2.5.8

    13. Please provide a list of any errors in your server’s log files.
    Under the windows event viewer is an error
    “Faulting application name: httpd.exe, version: 2.4.16.0, time stamp: 0x55a22a64
    Faulting module name: php5ts.dll, version: 5.6.12.0, time stamp: 0x55c3b699”
    Happens whenever this error occurs.
    Nothing related within the apache logs That I can see.

    14. Which company provides your hosting?
    University Hosted (Temple University)
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Windows running Xampp

    Slava Abakumov
    Moderator

    This is a required field
    On my screenshot here https://monosnap.com/file/GLDmV6D1PVbSwtSEB7rDVQatZKcC93# that text (This field is required) is just a field description.

    It seems to me, that you are using the old version of BuddyPress. What is it?
    On newest versions required fields are marked with the text (required), and not asterisk.

    #248890
    pandreas
    Participant

    I would also like to have some help to this topic.

    I have the same problem. Two languages on my site using polylang! How can these buddypress pages be translated and work to the second language as well?

    Thank you in advance!

    #248887
    bruce30
    Participant

    i hope someones still there. 🙂
    i still cant change the Messages word, that comes from the buddypress right? no problem with the Forum word, its already changed.

    #248877

    In reply to: Error Posting Comments

    @mercime
    Participant

    Issue is whenever user post a comment


    @mjc82in
    Just so we’re clear, when you say “post a comment”, do you mean post a comment in the comment form of a blog post? If so, that could be an issue with a theme which needs to be updated to be compatible with the latest WP and BP versions.

    What theme are you using? Have you tried changing to the Twenty Fifteen theme and check if issue is resolved?

    I can give access to my site to one of the moderators or developer if it helps.

    We will ask for a throw-away (not admin) account should the need arise. But at this stage, it’s looking to be a theme issue, not a BuddyPress bug. So your problem is not resolved by changing the theme, do provide answers to all the questions in the link I gave you so we can see the overall structure of your installation.

    #248873

    In reply to: Theme Incompatible?

    Slava Abakumov
    Moderator

    I believe this theme compatibility problems is better to discuss with theme authors. I googled and found several issues with this particular theme, that users can’t fix by themselves.

    BuddyPress tries to work with all possible themes, and it’s very hard to be good with everyone. In my opinion, theme authors should check their themes with popular plugins.

    #248870
    Slava Abakumov
    Moderator

    Separate languages – no, because all the plugins (and BuddyPress is a plugin) use the same language as the system. Because of the amount of hooks/filters in WordPress it’s nearly impossible (or very time and/or resources consuming) to create a reliable solution, that will switch language for plugins, but will not for WordPress.

    The easiest way is to have /wp-admin in one language, and front-end – in another.
    Here is the solution: https://wordpress.org/support/topic/different-languages-for-front-end-and-back-end?replies=5

    #248869
    Slava Abakumov
    Moderator

    I’m the developer of this plugin.

    BP Default Data does nothing on plugin activation and deactivation. It has own clearing routine, you can see it here: https://github.com/slaFFik/BP-Default-Data/blob/master/bp-default-data.php#L643
    If you deleted dummy data by your own – some orphaned data could be left in DB. It’s better to use built-in functionality. It removes everything, not touching the user with ID=1. It does NOT touches wp_posts table, where all posts and pages are stored.

    To fix – just create a page and assign it as Members directory page in BuddyPress -> Pages.

    #248868
    aamir_faried
    Participant

    @johnnybkk, could you please tell me how did you manage to get buddypress with polylang or or other multilanguage plugin

    It works : http://www.mysite/members
    This link does not work : http://www.mysite/en/members

    could you pleae tell me how can i make it work. thanks

    #248861
    r-a-y
    Keymaster

    You might want to read this reply:
    https://buddypress.org/support/topic/css-causing-cover-image-to-disappear/#post-248031

    Let me know if that helps.

    #248860

    In reply to: where is edit this?

    Hastig
    Participant

    I think activate.php

    /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/activate.php

    To edit you will first want to copy it to your own theme’s buddypress folder

    #248855

    In reply to: Error Posting Comments

    Manoj Chacko
    Participant

    Hi,

    I am running WordPress 4.3.2 and BuddyPress 2.4.3. BBpress Version 2.5.8 . Issue started happening couple of versions back. Installed in the root (using Xampp) It was working fine before wordpress/buddypress upgrade past summer.

    Issue is whenever user post a comment, it think for a second and gives out an error.
    Error, sometimes on some browser is just a error page, sometimes it s shows duplicate post error.

    But when I go back refresh the page. The comment was published. So something is happening after comment gets published and it has to redirect to the page.

    I have a bunch of plugins installed, but as rule of elimination I tried different combination. by removing and putting in plugin one by one.
    Conclusion issue is with WordPress/Buddypress/Akisment combo. with just wordpress and akismet it worked. just wordpress and buddypress it worked. With all three issue reappears, I have been troubleshooting it with Akismet first, But does not look like they are causing the issue.

    I can give access to my site to one of the moderators or developer if it helps.This issue is kind of becoming critical now.

    Thanks
    Manoj

    #248841
    Hugo Ashmore
    Participant

    Those look to be modified files, not the copies from the BP core plugin, the cover-image-header.php file appears to be missing some elements necessary.

    Again as my earlier comment have you asked this question of the themes authors, you need to as we can’t really support third party custom work, if they find that there is indeed an issue with the core implementation then we’ll definitely look into it.

    Also you could look to test things by ensuring you are running a copy of the files taken from the core bp-templates/bp-legacy/buddypress/members/single/ directory.

    #248838
    Florent
    Participant

    Please find portion of my home.php that may fire the cover image :

    <div id="item-header" role="complementary">
    
                  <?php
                  /**
                   * If the cover image feature is enabled, use a specific header
                   */
                  if ( version_compare( BP_VERSION, '2.4', '>=' ) && bp_displayed_user_use_cover_image_header() ) :
                      bp_get_template_part( 'members/single/cover-image-header' );
                  else :
                      bp_get_template_part( 'members/single/member-header' );
                  endif;
                  ?>
    
              </div>

    According to this, file cover-image-header.php loads the cover image but it is strange because as you can see this file display directly the avatar image. The div item-header-avatar is inside in item-header.

    <?php
    
    /**
     * BuddyPress - Cover Header
     *
     * @package BuddyPress
     * @subpackage bp-legacy
     */
    
    ?>
    
    <?php
    
    /**
     * Fires before the display of a member's header.
     *
     * @since 1.2.0
     */
    do_action( 'bp_before_member_header' ); ?>
    
    	<div id="item-header-avatar" class="rounded">
    		<a href="<?php bp_displayed_user_link(); ?>">
    
    			<?php bp_displayed_user_avatar( 'type=full' ); ?>
    
    		</a>
    		<?php do_action('bp_member_online_status', bp_displayed_user_id()); ?>
    	</div><!-- #item-header-avatar -->
    #248836
    Florent
    Participant

    Hello,

    Yes theme/buddypress/css/ refers to a BP ready theme (Kleo).

    styles written to the head of a document within style tags

    Thx I didn’t know that.

Viewing 25 results - 11,101 through 11,125 (of 69,016 total)
Skip to toolbar