Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,301 through 3,325 (of 69,121 total)
  • Author
    Search Results
  • #312692
    WordpressIsGreat
    Participant

    Ok,
    I’ve added the code into my functions.php but unfortunately nothing changed.
    I also reinstalled buddypress without success.

    #312680
    Mathieu Viet
    Moderator

    Awesome! Thanks a lot, for interested contributors, you can follow progress here: https://buddypress.trac.wordpress.org/ticket/8326

    #312677
    Varun Dubey
    Participant

    @sjdeveloper delete BuddyPress plugin folder to remove the error first, it will bring the site live and afterword activate the default 2020 theme to disable any function call from the currently active theme which requires BuddyPress profile component. Install BuddyPress and enable the profile component then activate your theme again.

    #312674
    Varun Dubey
    Participant
    #312671
    #312664
    Varun Dubey
    Participant

    @gcholmes try to deactivate BadgeOS community addon and BadgeOs itself to isolate it’s BuddyPress related or BadgeOs itself.

    #312663
    Varun Dubey
    Participant

    @webcomon

    You can use simple custom CSS to hide them

    .buddypress-wrap .groups-list li .item-meta {
    display: none;
    }

    #312661
    gcholmes
    Participant

    Hi there,

    I have just updated my wordpress site, I am not sure if it was buddypress or badgeOS that was updated but I now have this issue when accessing the buddypress profile, edit profile, groups etc:

    {“@context”:”https:\/\/w3id.org\/openbadges\/v2″,”type”:”Assertion”,”id”:”\/members\/lnrgn\/profile\/?bg=0&eid=0&uid=0″,”recipient”:{“type”:”email”,”hashed”:true,”salt”:”BADGEOSOBI”,”identity”:”sha256$ddbc8b27496e2e6991d13816769fd55c169583126e43fab5ea7d282b2df8d73a”},”badge”:”\/members\/lnrgn\/profile\/?bg=0&eid=0&uid=0″,”issuedOn”:”2020-07-02T19:33:09+00:00″,”image”:”https:\/\/toioranz.com\/wp-content\/plugins\/badgeos\/images\/default_badge.png”,”verification”:{“type”:”HostedBadge”,”verificationProperty”:”id”}}

    Any idea what is happening here?

    Thanks, Glenn

    #312658
    clickallco
    Participant

    I see now. From looking at the plugin code it could use some cleaning up, although its still fine to use.

    If you’d like to have more control, and you know how to code, you could override the buddypress/members/single/profile/profile-loop.php (in BP Nouveau) and create a loop with tabs instead.

    It should be easily doable with js modifications or using pure CSS using radio inputs.

    Here’s an example – use the js from something like https://codepen.io/liav80/pen/KzpWzy and alter the loop in profile-loop.php (as an example) to be

    <?php if ( bp_has_profile() ) : ?>
    <div id="wrapper">
    	<?php
    	while ( bp_profile_groups() ) :
    		bp_the_profile_group();
    	?>
    		<?php if ( bp_profile_group_has_fields() ) : ?>
    			<?php bp_nouveau_xprofile_hook( 'before', 'field_content' ); ?>
    					<?php
    					while ( bp_profile_fields() ) :
    						bp_the_profile_field();
    					?>
    						<?php if ( bp_field_has_data() ) : ?>
    							<div data-tabname="<?php bp_the_profile_field_name(); ?>">
                            			<div class="tabs-inner"><?php bp_the_profile_field_value(); ?></div>
    							</div>
    						<?php endif; ?>
    						<?php bp_nouveau_xprofile_hook( '', 'field_item' ); ?>
    					<?php endwhile; ?>
    			<?php bp_nouveau_xprofile_hook( 'after', 'field_content' ); ?>
    		<?php endif; ?>
    	<?php endwhile; ?>
    	<?php bp_nouveau_xprofile_hook( '', 'field_buttons' ); ?>
    </div>
    <?php endif; ?>

    It should give you a start to change things from there.

    #312643
    ayhanizmir
    Participant

    Hello
    as you can see when I try to add “buddypress friends list” plugin in my sidebar, it is not seen. (Groups widget are working well)

    Screenshot: https://ibb.co/nzd4HDd

    Note: I have friends in my profile…

    #312639
    scox1
    Participant

    I have a plugin for LDAP/AD integration on my site that maps to the user’s buddypress profile fields including profile picture. The profile picture shows up on the profile page, directory, forum. It even shows up on the membership list in groups. However, it doesn’t show up for the administrators of the group listed above the group name or on the invite page. We are using the Woffice theme, which buddypress is integrated with. Any suggestions are greatly appreciated.

    f3sp
    Participant

    Hi
    Is there a way we can display the activity form and activity stream on the same page with a slider on it? So the idea is to display the activity form and stream below the slider. Can anybody please advise if there is any code or solution to do this please?????? I’M IN A MAXIMUM LEVEL HURRY – Any help greatly appreciated. Thanks.

    p.s. currently – when we add the slider to the activity page, the slider does not appear 🙁

    #312625

    In reply to: Buddypress Docs

    shanebp
    Moderator

    BuddyBoss has a document handler. So you could use that.
    For questions specific to the BuddyPress Docs plugin, you should contact the creators of that plugin.

    #312619
    niceapps
    Participant

    Found! I reply to myself…
    “Email situation” means “Under what circumstances should this email be sent”

    Emails

    zundio
    Participant

    We have a weird behavior on the buddy press emails. My Admin users cannot edit the templates although me myself I am able to. When they duplicate one nobody can change or delete it anymore. Admin can make new email templates but no other user can change it.
    Any idea?

    stof17
    Participant

    I want to create a community website, so I install BuddyPress and Olympus theme and youzer plugin. After I finish the setup, I want to make it a paid membership community. I use “ultimate membership pro ” plugin. But my problem is that whenever I go to the register page and choose a subscription plan it takes me to the old BuddyPress registration page, not the ultimate membership pro one. In The BuddyPress register page, anyone can register and there’s no payment process. I need to replace it with the new one. I set all the settings correctly but nothing happens. maybe I need to edit the code. Can you help with that?

    #312593
    bigealien
    Participant

    @vapvarum thank you for the reply! I will attempt the troubleshooting. Where did you get that screenshot? That is certainly not my site. I’m sure BuddyPress is working on other people’s websites, it’s just not working on mine for this specific issue. I’ll include a screenshot or two.

    https://prnt.sc/t7xwqk – Screenshot with the Profile Picture option enabled. Circled in red where the option to upload SHOULD be.

    https://prnt.sc/t7xwjo – Screenshot with both Profile and Cover Image options enabled. As you can see the Change Cover Image option is available here, but again no Profile Image option.

    #312590
    oudekaas
    Participant

    I want to create a all black Twenty Twenty theme but when i change the colors everything works and the text is white (like i want it) but when i go to the BuddyPress part of my site and go to activity my activityposts are invisible but when i highlight them they are still there does someone know a fix


    Homepage

    Buddypress social

    #312585
    miryd98
    Participant

    it is a spam plugin no?
    anyways its for bbpress not for buddypress
    it works with both??

    #312582
    Varun Dubey
    Participant

    @bigealien seems working fine https://prnt.sc/t7udpt
    you can try following steps to debug the possible issue
    https://buddypress.org/support/topic/when-asking-for-support-2/

    #312577
    Varun Dubey
    Participant

    @optimizedpanama it seems you are using any other plugin which might be limiting access of groups and redirecting regular members to the homepage. Try to deactivate other active plugins and test once with BuddyPress only.

    #312574
    bigealien
    Participant

    Hello,

    I have BuddyPress and BBpress installed on my site: siliren.com
    In my Buddypress Settings, I have ‘Allow Registered Users to Upload Avatars’ checked and enabled. I do not have ‘Allow Registered Users to Upload Cover Images’ checked.

    Despite this setting being enabled, my users cannot find a button or option to upload a profile picture. If I enable the Cover Images option then there is a button and I can successfully upload a cover image. If both are checked then the option to upload a cover image still exists and works, but still no option to upload an avatar picture.

    Any advice on this? i will provide what information I can, however I am completely knew to building a site with basically no knowledge and am teaching myself through trial and error, so I ask for your patience, thank you!

    #312559
    annadito
    Participant

    Thanks for replying! I am able to add new field sets to the profile. They are displayed in a long list instead of broken up by tabs.

    If you’re looking at this screenshot: https://drive.google.com/file/d/1hgBbI3Za688UzVbl5cC9L5OjKboMVV5z/view?usp=sharing

    Ideally, there would be tabs under the “View Profile” text for “Bio” and “Test Field Set”. When you clicked on the tab, it would display the info associated with that field set.

    There’s an old plugin that appears to do this (https://wordpress.org/plugins/buddypress-profile-tabs/), but I am concerned about its stability and wondering if there is another option.

    Thank you for any guidance!

    #312558
    clickallco
    Participant

    Could you elaborate? Currently this is an already built in function in Buddypress.

    Go to your wordpress dashboard followed by clicking on Users > Profile fields > click on the button called “Add new field group” and you got a new tab you can fill out with profile fields.

Viewing 25 results - 3,301 through 3,325 (of 69,121 total)
Skip to toolbar