Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,351 through 3,375 (of 69,016 total)
  • Author
    Search Results
  • Varun Dubey
    Participant

    @danielafer use private community plugin or BP lock , it will help to keep your community private for logged in users.
    If you do not want the private community approaches you can also use no-index.

    function no_index_for_buddypress() {
        if ( is_buddyPress() ) {
            echo '<meta name="robots" content="noindex, nofollow">';
        } else {
        }
    }
    add_action( 'wp_head', 'no_index_for_buddypress' );
    danielafer
    Participant

    It is the third time that I ask and I don’t get any answer to my question:
    How can I avoid indexing the links generated by the plugin, for example profiles, activities, groups, etc.

    #312718
    ggbxl
    Participant

    @pedroverdi

    Hi

    I try to get Divi working with BuddyPress, but I cannot get access to BuddyPress short codes…
    Can you help?
    Gérard

    Judd Exley
    Participant

    I’ve got Woocommerce, Shop Isle Theme and a vew assorted plugins including bbpress and buddypress.

    Everything works great until I try to install ANY plugin involving newsletter features. Then I get an error that’s ONLY in the WP Admin area, usually involving running out of memory (even though my limits are nearly maxxed out).

    So installing the following ALL break just the backend:
    Mailpoet
    Newsletter
    Icegram
    MailChimp

    These things were all playing together nicely until the most recent update to Buddypress, now all of it breaks every time I’ve got the following switched on:
    Woocommerce
    ANY of the Newsletters above
    bbpress
    Buddypress

    Can anyone advise on what I can do? Or is there a way to roll back to the previous version before everything started breaking?

    Cheers.

    jaiprabhu
    Participant

    How to disable buddypress e-mail activation for users – only admins can approve accounts ?
    i disabled the user mail using this link : https://gist.github.com/KaineLabs/c0dfe6d07c64c1ab0d34046e7853251a

    but the admin not receive any mail regarding new user signup

    #312711

    In reply to: Activity as grid

    evillizard
    Participant

    @shanebp is it possible to make all buddypress activities into posts?

    – i already have a plugin that makes posts into nice grid templates ..and i could insert on a page with a shortcode

    – would it then be possible to make all buddypress activities into posts .. So i can put this shortcode on my homepage, and so everytime a user makes at activity, it becomes a post and appears on that post grid on the home page

    Is this possible.. With a plugin?

    #312701

    In reply to: Activity as grid

    shanebp
    Moderator

    You need to create a custom template for activity and adjust the layout to your liking.
    Info re how to overload a template.

    #312698

    In reply to: Change header?

    @mercime
    Participant

    @flpagan Can you clarify whether you’re referring to the theme’s header or a default group’s or member’s profile header/ cover image?
    If you’re referring to the theme’s header, please contact theme author.
    If you’re referring to the cover images for groups or members, try this https://wordpress.org/plugins/buddypress-cover-photo/ – haven’t used it myself. Good luck.

    #312697
    amaclenan
    Participant

    I see many people seem to have this problem and the site I am writing for a client certainly does – when a user loads a new Avatar picture, the result is a tiny dot and it is impossible to crop.

    This is a deal-breaker for using BuddyPress – does anyone have a work around?

    I am using Avada theme but have tested it with 2020 and still no luck.

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

Viewing 25 results - 3,351 through 3,375 (of 69,016 total)
Skip to toolbar