Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,101 through 13,125 (of 68,918 total)
  • Author
    Search Results
  • #238345
    shanebp
    Moderator

    You make a good point.
    It definitely should be exposed as a DEFINE, similar to define('BP_DEFAULT_COMPONENT', 'profile' );

    I suggest you create an enhancement ticket. Use the same user / pw that you use here.

    #238343
    Marcella
    Participant

    Yeah, I checked. This no longer works at all

    <div id="pag-bottom" class="pagination buddypress">
            <div class="page-count" id="member-dir-count-bottom">
                <?php bp_activity_pagination_count(); ?>
            </div>
            <div class="page-links" id="member-dir-pag-bottom">
                <?php bp_activity_pagination_links(); ?>
            </div>
        </div><!-- END PAGINATION -->

    Why the dependency on AJAX? Any pointers to implement traditional pagination? I’m sorta stuck now.

    #238331
    darkwoof
    Participant

    I posted the same question and no one answered me. This seems to be a common issue with all WordPress/BuddyPress installs (I have a separate WordPress install and the same thing occurs), so it seems to be inherent in the responsive CSS code or something.

    This was my question:

    https://buddypress.org/support/topic/toolbar-empty-for-mobile-logged-out-users/

    These other threads also seems to be talking about the same, or a similar issue:

    https://buddypress.org/support/topic/buddy-bar-not-displaying/
    https://buddypress.org/support/topic/how-to-show-secondary-navigation-menu-to-logged-out-users/

    Doesn’t anyone have any advice, since it’s affecting so many of us?

    And no, it was not due to a conflicting plug-in or a theme. Tests were done when the site was just installed with the default themes. The links shows up correctly on desktop, and on my Nexus 7 2013 (1200×1920 resolution) ONLY when it is in landscape mode, but not when it is portrait (empty, black bar is show). And the same empty black bar is shown on my Galaxy Note 3 (1080×1920 resolution) in both portrait and landscape. So it doesn’t seem to be due to just the horizontal resolution – but perhaps the the full (horizontal x vertical) resolution or something.

    It’s pretty frustrating.

    #238329
    paixaofileto
    Participant

    Thank you. But still did not solve my problem. He appears in the members and activity page, but the web page still does not appear, as the home page and admin manager. Has no solution for this?

    I’m trying to edit the plugin BuddyPress Fistr Letter Avatar because it changes the avatar everywhere the site taking the value of the first letter of the name of the user. But always when I try to use a value of xprofile field it does not work the way I want.

    Has no solution for this? Any suggestion?

    #238324
    danbp
    Participant

    Previous snippet changed all avatars (user, blogs and groups) which is not what you want. Here’s a snippet which works almost correctly, but not to 100%. Give it a try anyway.

    It changes the user avatar depending of an xprofile value.

    (add to bp-custom.php)

    function bpfr_my_new_avatar_url() {
    global $bp;
    
    	if( bp_is_user() && ! bp_get_member_user_id() ) {
            $user_id = bp_displayed_user_id();
        } else {
            $user_id = bp_get_member_user_id();
        }
    
    	if ( is_page( 'activity' ) ) {
    		$user_id = bp_get_activity_user_id();	
    	}
    
    $ranking = xprofile_get_field_data ('ranking', $user_id );
    
    	if ($ranking == "Top 25") {		
    		$url = get_stylesheet_directory_uri() .'/custom_img/25.png';
    	}
    	
    	if ($ranking == "Top 24") {		
    		$url = get_stylesheet_directory_uri() .'/custom_img/24.png';
    	}
    return $url;
    
    }
    add_filter( 'bp_core_default_avatar_user', 'bpfr_my_new_avatar_url' );
    

    Create a profile field called “ranking” with 2 options (top 24 & top 25).
    Create a folder in your child-theme called “custom_img” and add 2 pictures: 24.png & 25.png (250×250)
    If everybody must those avatars, disallow avatar upload in BP settings.
    Site default avatar stays as Mystery Man (wp default setting).

    You have also to get rid of Gravatar, so you must add this to bp-custom.php
    add_filter('bp_core_fetch_avatar_no_grav', '__return_true');

    The thing who doesn’t work is related to X & Y are now friends. Both willhave the same avatar.

    Can probably by better improved.

    #238317
    Carr Sky
    Participant

    I am using buddypress 2.2.3.1 and bbpress Version 2.5.7

    #238311
    shanebp
    Moderator

    BuddyPress does not call class phpmailerException so the error is from something else on your site.

    #238308
    imakerin
    Participant

    Hello!

    While i register new user from buddypress after click complete registration its make error as below
    Fatal error: Cannot redeclare class phpmailerException

    I reinstalled it but error not gone so please help me for that

    thank you

    #238301
    @mercime
    Participant

    > When i login as a user the buddy bar does not display at all.

    @fugu78 BP/WP versions? Have you tried deactivating plugins except BuddyPress to check if issue is resolved i.e., plugin conflict?

    #238299
    @mercime
    Participant

    @knutta you need to install bbPress then follow instructions at

    Installing Group and Sitewide Forums

    #238297
    djsteveb
    Participant

    couple of pages of discussion in regards to some chat plugin with wp/bp recently:

    Chat plugin?

    in my limited experience, I would suggest nusoft’s av-chat since you are asking about incorporating video and having an option to save the videos. I don’t think there is any way to auto-mate moving saved video chats into bp – I think you’d have to admin in to your media server and pull files manually then add them to wp/bp yourself.

    Maybe you would not need a live video chat plugin that saves files to add, perhaps something more like nusoft’s https://hdfvr.com/ which has a record video option, perhaps that could be incorporated in wp and bp with some custom button api or something (not sure, and if you explore that, let me know what you find out! I’d like to do that too!)

    For just text chat with only a few people I like the free “quick-chat” plugin that is in the wp-repo.

    Busier chat rooms have only worked for me using nusoft’s av-chat program or 123flashchat’s system. Everything else I have tried chokes after 20 users connect at the same time.

    I’m looking into Jitsi and xmpp right now, if I can find some folks to work on an integration with these I may kick in some funding for it. Still learning php and java myself.

    Just re-read your post, makes me think you could also use a screen recording software like corel’s videostudio or camtasia to “document all chat” – if you were involved in each one. Not sure what your project is really about, or what exactly you are looking to do, so a few random thoughts from another bp user, not yet a coder.

    #238294
    shanebp
    Moderator

    What version of BP are you using?

    Have you seen this?

    #238291
    caniwigirl
    Participant

    I first installed BuddyPress on our site a couple years ago and all worked as expected. However, it was decided we wouldn’t pursue BuddyPress as part of our solution at the time. Earlier this year, we decided to re-instate it, which is when I noticed this new behavior…

    There have been a lot of updates in WordPress, BuddyPress and bbPress during this time, so I’m guessing something somewhere along the line, but may not have been addressed yet. I haven’t found any fixes online for it, which is why I have posted here.

    Just to clarify, HIDDEN FORUMS appear for Keymasters and Moderators, but not to members of them who haven’t been assigned to either of these roles. They can, however, access the forum if they have the URL for it. So, at the moment, I am having to make all members of hidden forums be moderators in order to keep my site navigation clean.

    Perhaps @bphelp could shed some light?

    #238289
    danbp
    Participant

    Sorry but your pasted code is wrong.
    See source.
    Read also the comments before you copy/paste.

    @henrywright can you help out please ?

    #238282
    paixaofileto
    Participant

    The avatars only works when I’m in BuddyPress pages.
    I want to make it work around the site by adding the following code passing the user ID I found searching for:

    <? php
    $ Userid = bp_loggedin_user_id ();
    echo bp_core_fetch_avatar (array ('item_id' => $ id user));
    ?>

    But in which .phpeu add file this code?

    #238281
    danbp
    Participant

    Please, don’t double post. Answers are not coming faster by doing this. Thx.

    Topic is continued here:
    https://buddypress.org/support/topic/avatar-does-not-show-outside-buddypress/

    #238274
    danbp
    Participant

    Your homepage contains an error:
    ob_end_flush(): failed to send buffer of zlib output compression (1) in ../../wp-includes/functions.php on line 3269

    Which kind of avatar should appear on the homepage ? It’s the default blog page and there is no avatar on this page.

    You have to setup buddypress correctly at first before trying to modify your site.

    Check that any BP component has his page and setup pretty permalinks.

    Configure BuddyPress

    #238273
    olay
    Participant

    Hi There …

    I’m noticing this too – But I’m new to Buddypress, has this always been the case?

    Crucially, I think someone who is a member of a group, should see the forums/topics from the group forums they are members of on the Forum Index.

    ‘Hidden’ should only apply to non-members

    Does anyone know if this is correct behaviour/ how it’s always been?

    Thanks

    #238272
    paixaofileto
    Participant

    Here is the link to my site:
    http://hsseek2.esy.es/

    you can log in and see:

    username: test
    password: test

    Avatars not appear on pages outside of BuddyPress, as the home page for example. In BuddyPress pages appear in the web page does not appear.

    The profile name is ranking, used the gender variable because adapted from another code and not changed.

    My theme is Twnty Fifteen

    #238260
    danbp
    Participant

    OK.
    Have you setup pretty permalinks to something other as “default” ?

    When BP is setup correctly, activities and members directory should be (by default), your-site/members/ and your-site/activities/
    You actually have your-site/?page_id=5 for activities.

    Check that you assigned a page to any activated BP component – ensure also they exist in page directory. These page should be blank and without any parent template or model. Just a title, nothing else.

    More setup details on Codex.

    #238259
    danbp
    Participant

    Yes, it’s a knowed bbPress bug (at least 2 mounth ago). But bbPress was updated since… So i guess it’s also related to your theme and the way he calls page…

    See here please, and apply the patch. (if not already in latest bbp ?)
    https://buddypress.org/support/topic/weird-error-after-updating-buddypress/#post-234299

    Activate first 2015 or 2013 while testing, so you will be sure it’s your theme in case of the test is successfull. And also all other plugins except BP and bbP.

    #238254
    fab_pj
    Participant

    Thanks so much Dan, at least know I know where to look for!
    Activated debug, it seems like there is a conflict with bbpress, correct?

    Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home7/ealthblo/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28

    #238252
    fab_pj
    Participant

    Sure thing, let me get all the info (warning, I am mildly tech savvy, so sometimes I struggle a bit to do get onto more elaborate tasks – eh!)
    All right, URL: http://www.healthbloggerscommunity.com/
    List of endless plugins!
    Akismet
    bbPress
    BuddyPress
    DesignThemes Core Features Plugin
    Facebook By WebLizar
    Facebook Conversion Pixel
    Fast Secure Contact Form
    Fast Secure Contact Form
    Google Analytics by Yoast
    PopupAlly Pro
    Select Revive Old Post (Former Tweet Old Post)
    s2Member Framework
    The Events Calendar
    The Events Calendar: WooCommerce Tickets
    The Events Calendar PRO
    WooCommerce
    WooCommerce Quantity Increment
    YITH WooCommerce Zoom Magnifier

    I am afraid that things like local install will require a bit of learning on my side, but point taken I’ll make a note to have a look into it 🙂

    The page just misses the BP part.

    Really dummy question, how do I go about enabling wp_debug in wp-config?
    Do I have to go through my cPanel through my hosting?

    #238250
    danbp
    Participant

    Don’t panic ! Something went wrong after WP update. OK.
    And two BP pages are now blank.
    But at this time, it’s difficult to tell you what happened to your install.

    Can you provide a site URL ? And a list of all your activated plugins ?

    It’s also a good practice to have a local install, mirrored to your production site, where you can make some test. This is particulary usefull in situation like yours.

    When you’re on group and members page, is the screen blank or only missing the BP part ?
    Please enable wp_debug in wp-config, and see if you get some error mesaage ?

    FYI, here a similar discussion, so you can have a little overview about page issues.

    #238249
    danbp
    Participant

    Hi @edutech2015,

    depends your theme, and needs preferably the usage of a child-thme.
    the forum plugin is bbPress. This plugin use the same technique as BuddyPress to adjust CSS.

    See bbPress documentation here.
    And follow for BP from here.

Viewing 25 results - 13,101 through 13,125 (of 68,918 total)
Skip to toolbar