Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 1,926 through 1,950 (of 69,016 total)
  • Author
    Search Results
  • rcotwunite
    Participant

    Hello all,

    I’ve created a custom theme. I’ve kept it simple, and I like everything about it except that my /register page is blank! Along with all the other buddypress stuff and the forum, etc.

    Is there some piece of code i need to include in my .functions.php or header or something to make all this work together?

    When I switch to another theme, like twenty-twenty-one, the register page shows up, BUT the style makes all my pages look really bad! What can I do to make this bit work in my theme?

    working on the site http://staging3.recordcollectorsoftheworldunite.com/

    Thanks so much.

    #323319
    restorm
    Participant

    I’m creating a new BuddyPress site that will be primarily organized around Groups. Each Group will represent a city, and each Group needs to have multiple Forums (such as for neighborhoods within the city). Two questions, please:
    1) How do I create multiple Forums for Groups? When I set up a new Group, it asks if I want the Group to have a Forum. But it says nothing about having more than one Forum.
    2) I’m confused about the difference between a BuddyPress user registration and a BBPress Forum user registration. Do I need both? Does the Forum registration just register them for one Forum, or for use of the whole BuddyPress site? If they register in BuddyPress, do they also need to register to take part in a Forum?

    In general, I don’t understand why BuddyPress and BBPress are separate plugins. It would make a lot more sense (and be less confusing) if they were all in one plugin, wouldn’t it?

    #323317
    giuseppe2016
    Participant

    Hello community. I’d like to use Buddypress but with this configuration:
    fresh wordpress installation 5.4.9 , php 8 , with only Buddypress 10.0 plugin activated on twenty nineteen theme it is not possible to add personal photo as subscriber role nor author role.

    I had already tried with wordpress installation 5.9 , php 7.2 , with only Buddypress plugin activated on twenty twenty theme.

    The only difference is that now it’s always written “There was a problem cropping your profile photo.”

    https://amodio.live/members/buddy_test2/profile/change-avatar/

    Someone has a solution or Buddypress has gone forever?

    Do you know another plugin to use for creating a community?

    Many thanks,

    Giuseppe

    #323267
    maryreyes
    Participant

    Why does clicking on my user name (upper right corner of the screen) in my forums take me to the Edit Profile page instead of the View Profile page, and how do I change it? It shouldn’t take me to the profile editing page unless I click on “Edit profile” or I choose the “Edit” option on the profile page itself.

    (Incidentally, it’s even more screwed up on this forum. It goes to https://buddypress.org/wp-admin/profile.php , not anything to do with me. Naturally, I get a “Sorry, you are not allowed to access this page.” error.)

    WP Version 5.9
    BP Version 9.2.0
    bbPress Version 2.6.9
    bbp style pack Version Version 4.9.1

    Site: http://www.laceioli.org

    #323259
    giuseppe2016
    Participant

    Updates:

    I have updated php from 7.2 to 8 and the only difference is that whatever image you upload it appears (also if you want to take from web camera):

    “There was a problem cropping your profile photo.”

    I have a wide community to insert in a website but Buddypress seems to be very dangerous to use professionally.

    #323253
    palztogo
    Participant

    Hello,

    I’m getting these Notices in my Frontend Website Heading. Please see bellow at the end of this message.
    My support team tell me that it’s relate to BuddyPress or its related plugins.

    What are these errors?
    Should I do anything to correct the errors?
    To which plugins these errors are related to?
    Should I just ignore these notices and Disable WP_Debug?

    I disabled al the plugins which are related to buddypress, but these notices don’t disappear.
    If I disable BuddyPress these notices disappear but also my website, because it’s based entirely on Buddypress 🙂

    Any suggestions?

    I’m using:
    WordPress v 5.9
    BuddyPress v 10.0.0

    Thanks,
    Dror

    Notice: Trying to get property ‘ID’ of non-object in /home/palztogo/public_html/wp-includes/class-wp-query.php on line 4121

    Notice: Trying to get property ‘post_title’ of non-object in /home/palztogo/public_html/wp-includes/class-wp-query.php on line 4123

    Notice: Trying to get property ‘post_name’ of non-object in /home/palztogo/public_html/wp-includes/class-wp-query.php on line 4125

    Deprecated: bp_before_xprofile_cover_image_settings_parse_args is deprecated since version 6.0.0! Use bp_before_members_cover_image_settings_parse_args instead. in /home/palztogo/public_html/wp-includes/functions.php on line 5691

    #323249
    teslavolt
    Participant

    Is this documentation old? https://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/

    include optional
    Pass an activity_id or string of comma separated ids to show only these entries.

    Default value: false

    #323244
    Jeremy
    Participant

    Hello, I have researched the topic here and the codes that are suggested to be added into my functions.php of my theme do not work for me. I even tried to add it to the core of buddypress within the plugin, and that did not remove it either. I unchecked the settings and turned off registration, still there, any solutions?

    teslavolt
    Participant

    Wordpress v5.9
    Buddypress V10
    Theme – Nouveau enabled

    I’m trying to put the contents of a single activity onto a custom wordpress template page.
    e.g. https://www.mysite.com/members/myusername/activity/2/

    I looked at the \buddypress\bp-templates\bp-nouveau\buddypress\activity\activity-loop and \activity\single\home for code to put in my custom template:

    
    <div class="entry-content" id="start-a-project">
        <div id="buddypress" class="buddypress-wrap twentysixteen bp-dir-hori-nav">
            
            <?php $prj_activity_args = array("include"=> 2 );  // only pull activity id=2 from WP_BP_ACTIVITY ?> 
            <div class="activity" data-bp-single="2"> <!--hardcoding for testing-->
            <?php 
            if ( bp_has_activities( $prj_activity_args ) ) : ?>
                <?php if ( empty( $_POST['page'] ) || 1 === (int) $_POST['page'] ) : ?>
                    <ul id="activity-stream" class="activity-list item-list bp-list" data-bp-list="activity">
                        <ul class="activity-list item-list bp-list">
                <?php endif; ?>
                <?php
                    while ( bp_activities() ) :
                        bp_the_activity();
                ?>
                    <?php bp_get_template_part( 'activity/entry' );?>
                <?php endwhile; ?>
                <?php if ( empty( $_POST['page'] ) || 1 === (int) $_POST['page'] ) : ?>
                        </ul> <!-- .activity-list -->
                    </ul> <!-- #activity-stream -->
                <?php endif; ?>
            <?php else : ?>
                <?php //bp_nouveau_user_feedback( 'activity-loop-none' ); ?>
            <?php endif; ?>
            <?php// bp_nouveau_after_loop(); ?>
    
            </div>
        </div>
    

    I only want to pull one activity – so I passed array(“include”=> 2 ) to bp_has_activities() ; However, when the page is loaded, the <ul id=”activity-stream”> loads ALL the activities.

    Could someone help me figure out why this is happening? I switched to the legacy theme and the code works fine. I think it’s something to do with the data-bp-list=”activity” that is causing all the activities to get loaded.

    #323238
    Avi Nayar
    Participant

    Hey, I have a buddypress based theme on my site. Can every post be moderated before they are posted? If yes please let me know where in the options/settings can I enable that.

    #323237
    giuseppe2016
    Participant

    Updates:

    fresh wordpress installation 5.4.9 (the last one as in the Buddypress requirements) with only Buddypress 10.0 plugin activated on tweny nineteen theme.

    Not working on 5.9 and twenty twenty theme too.

    Both cases it is not possible to add personal photo as subscriber role nor author role.

    Have you found a solution?

    Many Thanks,

    Giuseppe from Rome

    #323236
    giuseppe2016
    Participant

    Updates:

    fresh wordpress installation 5.4.9 (the last one as in the Buddypress requirements) with only Buddypress 10.0 plugin activated on tweny nineteen theme.

    It is not possible to add personal photo as subscriber role nor author role.

    I don’t know what to say. Buddypress 10.0 has this bug on 5.4.9 too?

    #323234
    giuseppe2016
    Participant

    Let me add:

    twenty twenty as theme

    only buddypress 10.0 as active plugin

    PHP 7.2.34

    Wordpress 5.9

    Are there some conflicts?

    Please let us know,

    Giuseppe

    #323232
    giuseppe2016
    Participant

    My first experience in adding Buddypress and same issue on the very first action implementing it.

    How this could be fixed?

    Many thanks,

    Giuseppe

    #323207
    ciudadaumentada
    Participant

    Hello. I have a problem with my site and BuddyPress.
    Unable to complete registration.
    This error appears:
    Fatal error: Uncaught Error: Call to a member function profile_groups() on null in /home/customer/www/faconautowoman.com/public_html/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php:101 Stack trace: #0 /home/customer/www/faconautowoman.com/public_html/wp-content/themes/thrive-nouveau/buddypress/members/register.php(50): bp_profile_groups() #1 /home/customer/www/faconautowoman.com/public_html/wp-includes/template.php(772): require(‘/home/customer/…’) #2 /home/customer/www/faconautowoman.com/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(165): load_template(‘/home/customer/…’, false, Array) #3 /home/customer/www/faconautowoman.com/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template(Array, true, false, Array) #4 /home/customer/www/faconautowoman.com/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(350): bp_get_template_part(‘members/registe…’, NULL, Array) #5 /home/customer/www/faconautowoman. in /home/customer/www/faconautowoman.com/public_html/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php on line 101

    The site works with wordpress 5.9

    Can help us?

    Thanks

    #323196
    ellaharrison1122
    Participant

    I have a clash of clans website. And now I want to change the theme into BuddyPress. How I will migrate it without dropping in its ranking and design.
    Thanks.

    werny
    Participant

    I noticed that after updating to Buddypress 10.0.0 there will be no media displayed in my groups anymore. The link also vanshed completely in the submenu of every single group.
    So I downgraded to Buddypress 9.1.1 and it worked again.

    I am using Gwangi for Buddypress as theme.
    Maybe you can fix that?

    #323190
    bejiel
    Participant

    I updated Buddypress yesterday in the WP dashboardand.
    After Logout and re-opening the site, the Login fields were gone !
    Members are not able to login.
    Is there a way to return to the previous version ?

    #323187
    rcotwunite
    Participant

    Thanks for the heads up about the bootstrap, I fixed that. It is a theme issue, I imagine. I made my own custom theme. Is there something I need to include somewhere to make buddypress work?

    #323184
    rcotwunite
    Participant

    Hello all, I have seen lots of posts like this, but nothing has fixed mine.

    I’m getting a blank page at
    https://staging3.recordcollectorsoftheworldunite.com/register/

    I’ve enabled sign-ups for all members, and have uninstalled and reinstalled buddypress as well as deleted and remade the page ‘register’.

    I’ve configured to make my page “register” buddypress default register page in the buddypress page menu.

    I tried copying the register.php file from buddypress folder into my theme folder as page-register.php but that didn’t work either.

    What can I do to solve this?

    Thanks

    #323183
    Ketil Ervik
    Participant

    I have fix it. Am deaktivate buddypress and aktivate it again then was all ok.

    #323180
    outdoorschool
    Participant

    Hi,
    I am trying to install Spanish language on my site

    Homepage

    Spanish is already installed and working on the site
    I have installed .po and .mo files, and also in place are json files installed by Polylang.
    However, when in Buddypress users only get pages in English.

    I have been through all documentation I can find (which seems all to be quite old tbh) but have not found any appropriate suggestions/solutions.

    Please advise

    accademiapv
    Participant

    Dear support,
    I purchased this theme Masterstudy Buddypress Theme.
    The page editor is Elementor.

    The elementor module, to add buddypress groups in a page, doesn’t have the field to decide how many groups to show.

    By default are showed 6 groups, I would like to show all available groups. How can I do that?

    The theme support told me to contact Buddypress support.
    Thank you.

    Mathieu Viet
    Moderator

    Sure!

    Thanks for the ping @johnjamesjacoby. I’ve open a ticket with a patch about it. @alexmangini don’t hesitate to test it. By the way we don’t use Git but SVN for BuddyPress code. If you want to dive into BuddyPress code contribution, I advise you to read this tutorial to get started quickly 😉

    #323166
    chipe
    Participant

    I am using the most recent versions of WordPress and BuddyPress.

    Hi, I’ve been searching these forums for about 4 hours now.

    On my members page the background is light gray but all of the text, like the members names especially, are a real light yellow. I can not for the life of me figure out how to change those colors!

    Can anyone please point me in the right direction??

    THANK YOU

Viewing 25 results - 1,926 through 1,950 (of 69,016 total)
Skip to toolbar