Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,076 through 14,100 (of 69,016 total)
  • Author
    Search Results
  • #234375
    Mathieu Viet
    Moderator

    Very strange.

    Have you tried to deactivate all plugins except BuddyPress to see if that wasn’t a problem with another plugin ?

    Have you tried to activate a WordPress default theme to see if it wasn’t a problem with the active theme ?

    Do you have custom function in bp-custom.php, if so try to remove them temporarly.

    If all of the above is not changing anything to your trouble, if you deactivate BuddyPress is the problem still there (you can actually begin by this step, if you prefer) ?

    #234374
    asoldier
    Participant

    Discovered a conflict with WP User Management Plus. It does not like the latest version of Buddypress.

    #234371
    r-a-y
    Keymaster

    You are using bbPress, which handles its forum integration into BuddyPress.

    Your question would be better suited there – bbpress.org/forums/

    #234352
    danbp
    Participant

    Yes, It works with multisite but I (@sbrajesh) strongly recommend not activating it network wide. Instead, activate on the main BuddyPress blog. Source.

    In other words, you upload the plugin and activate it from the WP plugin admin, not from the network admin.

    And MediaPress works on a multisite install: http://bp-fr.net/membres/dan/mediapress/
    At least for pictures.

    As MediaPress is still in beta, thought you can’t expect to have anything to work flawlessly.

    It’s not “it doesn’t work” (without giving details), but it works partially. ๐Ÿ˜‰

    #234345
    Henry Wright
    Moderator

    Closed [duplicate]

    #234341

    In reply to: Updating issue

    solserpiente
    Participant

    Hi
    Sorry, you are right.

    I enqueue my styles from my theme function.php file, in this way:
    wp_enqueue_style( 'showcase', get_bloginfo( 'stylesheet_url' ) );

    If I use this code in header.php it works:

    if ((bp_is_user()) || (bp_current_component('groups')) ){
    <link rel='stylesheet' id='showcase-css'  href='http://mysite.com/theme/style.css?ver=4.1' type='text/css' media='all' />
    }

    But if I use this in functions.php not works:

    if ((bp_is_user()) || (bp_current_component('groups')) ){
    wp_enqueue_style( 'showcase', get_bloginfo( 'stylesheet_url' ) );
    }

    Obviously, I have found the solution with code in header.php, but I am curious to know what has changed in the buddypress code for this to happen.

    Thank you for your attention

    Best regards

    #234336
    Alice-Claire
    Participant

    I don’t have a choice. My site needs BuddyPress. Any other solutions out there? Or anyone else having the same issue?

    #234333
    Mark_Cooper
    Participant

    Just found it through trial and error. It was the sync of the profiles between BuddyPress and UserPro.

    Thank you for your assistance.

    #234330
    disha76
    Participant

    Mediapress does not work with multisite and when multi blog mode is enabled – even using the updated version. I have tested with Multisite (non subdomain – define(‘SUBDOMAIN_INSTALL’, false);)

    Rtmedia works smoothly without any problem, only thing is that the activity stream entries look ugly due to centrally placed thumbnails in a column.

    The p2 theme has a form that can directly add media or albums from user’s wordpress core media but there is no plugin to plug this into buddypress in a responsive theme. Sad!

    #234326
    gina
    Participant

    hi @imath – unfortunately due to deadlines i won’t be able to try this out. sounds like @alice-claire has tried it tho.

    we’ll just have to go it without buddypress for now.

    thanks tho! ๐Ÿ™‚

    #234315
    r-a-y
    Keymaster

    In BuddyPress 2.2.0, we set all BP pages to page ID of zero.

    This showcases the “is_page( 'ANYSLUG' ) returning true” bug in WordPress when the page ID is zero:
    https://core.trac.wordpress.org/ticket/24674

    I would recommend applying this simple one-word patch to WP core temporarily:
    https://core.trac.wordpress.org/attachment/ticket/24674/24674.2.diff

    Or you can use is_buddypress() to test if you’re on a BP page as well.

    #234310
    bp-help
    Participant

    @buddies
    If after following Hugo’s advice does not resolve your issue then place the below snippet in bp-custom.php

    
    function bphelp_members_page_private_redirect() { 
    
    if ( bp_is_members_component() ) {
    
    	if(!is_user_logged_in()) { 
    		bp_core_redirect( get_option('home') . '/register' );
    	} 
    }
    }
    add_filter('template_redirect','bphelp_members_page_private_redirect',1);
    

    Good luck!

    #234309
    theboc
    Participant

    1. Which version of WordPress are you running? 4.1

    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? NO

    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? 2.2.0

    7. Did you upgraded from a previous version of BP? If so, from which version? NO fresh install

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? YES; akismet, contact form 7, hello dolly, instagramy, taqyeem, ” ” add on, ” ” predefined Criteria, and woocommerce. I deactivated all plugins except for buddy press and the buddypress pages still are not displayed. when i go to the url domain.com/members

    9. Are you using the standard BuddyPress themes or customized themes? Sahifa 5.0+ wordpress theme which is compatible any help is appreciated.

    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? N/A

    13. Please provide a list of any errors in your serverโ€™s log files. N/A

    14. Which company provides your hosting? arvixe

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache

    #234308
    yosmc
    Participant

    I am afraid I cannot confirm this – every time I create a new subsite, I need to restore all setting from scratch. This includes theme settings (new sites start off with a nag screen that they need a static page to be set up, site logo is missing, etc.) and Buddypress setting as well.

    In a way it is even logical, because the new subsite has its own pages, so unless Buddypress creates them itself, I don’t see how or why the installation could recycle the pages from the parent site.

    #234307
    srucwebmaster
    Participant

    I also encountered the issue reported by @asitha above and have opened a new ticket on trac as I couldn’t find an ticket referring to this.

    #234306
    bp-help
    Participant

    @saish_neugi
    This tutorial might help to get you going in the right direction.

    How to Build a Facebook-Style Members-Only WordPress-BuddyPress Site

    #234301
    Grandstand
    Participant

    Thank you for your reply! I guess I am a little confused on the Template Hierarchy. The link you gave references “/buddypress/members/index-register.php” does this mean I am looking for a file in “domain/wp-content/plugins/buddypress/bp-members/” named index-register.php? If so I do not have that file.

    #234296

    In reply to: [Resolved] Bug?

    shanebp
    Moderator

    It’s not a bug. Read this.

    #234293
    Toby
    Participant

    Thanks @Hugo. Appreciate your time on this. I’ll have a look and see what I can do.

    I’m trying hard not to think about the original code at the moment. I took over the site in May last year and knew php/mysql but had very limited experience with WordPress and hadn’t even heard of Buddypress. It’s been a steep learning curve, and I’ve managed to work out a lot and fix a bunch of stuff and even make some timid suggestions here, but a thorough re-factoring of the code is a step too far both time and probably skill wise at this point unfortunately.

    #234289
    Toby
    Participant

    That was for a buddypress group’s home page, i.e. site.com/groups/group-name/

    #234285
    Toby
    Participant

    There are a lot of other redirect bits and pieces. The site is locked down to just users with emails from set domains. I’m a bit hesitant at the moment trying to rebuild what’s already been built on the site because I don’t know what else I’ll break.

    I don’t have is_page(‘about’) in that if clause. I’ve tested with single is_page() values and even is_page(‘rehkjvabwdvarv’) is returning true on Buddypress pages for me.

    #234281
    Toby
    Participant

    Yeah I had a read through the ticket before posting.

    What’s confusing me is something has changed in v2.2.0 and I’m not sure how to mitigate it. It may well be that the conditional logic has been broken since I took over the site and just worked by mistake, but is_page() is being used in functions.php to drive some redirection/login stuff (not 100% why – no documentation!), changing page headers, as well as enqueue/dequeue different scripts. The main one that has caused a nightmare is:

    if( ! is_user_logged_in() )
    {
        // code removed
    }
    else
    {
        if( is_page( 'login' ) || is_page( 'register' ) || etc.. )
        {
            wp_redirect( '/home/' );
            die();
        }
    }
    

    The site is working fine in Buddypress v2.1.1 but in v2.2.0 every single Buddypress page now redirects to home. This one is actually quite easy to work around, but then I fall foul of the others. There probably needs to be a large scale rewrite, but it’s a big site with no documentation and it’s just me working on it and there’s no budget for that kind of development.

    #234280
    Hugo Ashmore
    Participant

    @tobyhawkins
    Not sure how you’re running your checks, where or to what end, but I wouldn’t use is_page() where BP is concerned, but it sort of depends on what exactly your theme is trying to do, BP has template tags such as bp_current_component() & bp_current_action() that can provide very specific checks for screens.

    This ticket and the links to a a sister ticket might help in understanding how is_page() is working and the changes effected a while back, of course this doesn’t rule out the possibility there is something else wrong that needs further investigation.

    https://buddypress.trac.wordpress.org/ticket/5307

    Having said all that is_page() will return true, is_page(‘blah-blah’) will return false if for example your running that on the members directory screen, bp_current_component() will return ‘members’

    What templates are you working with, theme compatibility?

    #234279
    majecdad
    Participant

    Ok, so I thought I was either crazy or missing something simple, but this exact same thing is happening to me.

    I ‘promote’ a member to Moderator, their avatar shows up as “Group Mod” – however, they never realize the ability to delete content within that group (except their own, of course).

    Interestingly, after this ‘promotion’ their Forum role never changes from ‘participant’ in the WP users page, and their Site role stays at Subscriber. (not sure if that is normal behavior?)

    I have deactivated all the other plugins except bbpress and buddypress, and the required theme plugins. I have tried it on two different themes.

    If I promote the user to Group Admin, they do realize the delete privileges, but that’s not what I want to do as it includes other group edit functions.

    WP 4.1
    BP 2.2
    bbp 2.54

    Any guidance is greatly appreciated.

    #234276
    Toby
    Participant

    Sorry. This is what happens when you write posts at the end of a long day!

    is_page( $page ) is returning true for any value of $page on all buddypress pages. It’s fun ๐Ÿ™‚

Viewing 25 results - 14,076 through 14,100 (of 69,016 total)
Skip to toolbar