Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 2,626 through 2,650 (of 73,371 total)
  • Author
    Search Results
  • myblackf150
    Participant

    Hey guys, I saw a post here on how to add a new topic button which is pretty cool.

    So it got me to look at form-topic.php and from it created my own simplified “create a new topic page” however it shows a dropdown-box to select which forum the user wants the post to go to but I just want this form just for one forum which I have the id for.
    How do I change the drop-down to auto-select the forum I want by default?
    Thank you.

    #320150
    scaredychatter
    Participant

    Hi, new to this whole BuddyPress thing. Trying to make a social site and I’m having a rough time with it.

    I’ve searched and searched, here included, for info on how to change the colors and design of the profile page, but all I ever find is how to add new fields. I don’t want to add new fields, I want to change the colors. Can’t find it anywhere. Please help.

    WP/BP versions – current

    #320143
    pooriaarab
    Participant

    Hi,

    I’m trying to add a custom sidebar (for the widgets) for different user types. We have 3 different user types as “Member”, “Instructor”, and “Facilitator”. For these 3 different user types, we want 3 different sidebars. So, as you would go on Appearance -> Widgets you can see 3 sidebars and you can add the widgets to and they will ONLY appear for that specific user type.

    I managed to register the sidebar in the functions.php in the Childs Theme but was not sure how to call it in the BuddyPress > Members > Single > Home.php. I know I have to use bp_get_member_type() and if conditional to make it and call it using dynamic_sidebar(). Though I tried it and as the code is in the loop, it does not work.

    This is the code in the home.php which I assume I should include it in:

    if ( ( !isset($bp_nouveau_appearance['user_nav_display']) || !$bp_nouveau_appearance['user_nav_display'] ) && is_active_sidebar( 'profile' ) && !bp_is_user_settings() && !bp_is_user_messages() && !bp_is_user_notifications() && !bp_is_user_profile_edit() && !bp_is_user_change_avatar() && !bp_is_user_change_cover_image() && !bp_is_user_front() && $profile_cover_width == 'full' ) {

    ob_start();
    dynamic_sidebar('profile' );
    $sidebar = ob_get_clean(); // get the contents of the buffer and turn it off.
    if ( trim( $sidebar ) ) { ?>
    <div id="secondary" class="widget-area sm-grid-1-1 no-padding-top" role="complementary">
    <div class="bb-sticky-sidebar">
    <?php dynamic_sidebar( 'profile'); ?>
    </div>
    </div>
    <?php
    }
    }

    I am using BuddyBoss theme.

    cassel
    Participant

    I found out that the registration page for BuddyPress, when set in the dashboard overtook the page I had customized. To avoid that, I gave it is own page, so that my “normal” login was the customized one.
    However, I notice that the Buddypress registration is letting a lot of spam registrations in, since it is not using captcha. Is there a way to disable it completely so I can just keep my own page the way I set it up?

    #320119
    www.Layla.at
    Participant

    buddypress: 9
    theme: Gwangi
    main domain: imin.co.il
    Core: no core changes

    when upload profile photo the preview is displayed wrong

    thanks
    ori

    #320118
    Mauro
    Participant

    Please note the above solution won’t work if you have a custom table prefix (i.e. different than “wp_”).
    I’ve put together this function using the bp_after_has_members_parse_args filter. Posting it here in case anyone needs it. So far it looks like it works fine.

    /**
     * Only list active MemberPress members in the members directory.
     * sources:
     * https://buddydev.com/hiding-users-on-buddypress-based-site
     * https://buddypress.org/support/topic/member-loop-only-memberpress-members/
     * @param array $args args.
     *
     * @return array
     */
    function tmp_only_show_members_in_directory( $args ) {
        // do not exclude in admin.
        if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
            return $args;
        }
        global $wpdb;
        $member_ids = $wpdb->get_col("SELECT DISTINCT user_id FROM ".$wpdb->prefix."mepr_transactions WHERE status IN('confirmed','complete') AND (expires_at >= NOW() OR expires_at = '0000-00-00 00:00:00')");
        $args['include'] = $member_ids;
    
        return $args;
    }
    add_filter( 'bp_after_has_members_parse_args', 'tmp_only_show_members_in_directory' );
    #320116
    VibeThemes
    Participant

    This is already available.
    Also check this link : https://wordpress.org/plugins/vibe-buddypress-woocommerce/

    #320115
    VibeThemes
    Participant
    #320111
    aliforty
    Participant

    Important followup notes:

    -BuddyPress is correctly processing, cropping, and uploading images to WordPress

    -These other plugins are also installed in the same server:

    BuddyPress Xprofile Custom Field Types: Version 1.1.9

    BuddyPress for Timber: Version 1.1

    BP Better Messages: Version 1.9.8.165

    bbPress: Version 2.6.6

    aliforty
    Participant

    Hi all,

    I have recently upgraded to Buddypress 9.0 and an existing function hooked in uploading a new avatar no longer appears to be working. Could you let me know please what is the correct hook now? I looked through the supplied Actions & Hooks pdf, but no luck so far in trying those. I also searched for “Avatar hook” in the forums and no results unfortunately.

    *Wanted to note that the profile picture/avatar is being uploaded to WordPress correctly

    Here is how the function was being registered before:
    add_action( 'bp_members_avatar_uploaded', [self::class, 'UpdateAvatarToSalesforce'], 10, 3 );

    Here is the function prototype:

    public static function UpdateAvatarToSalesforce($item_id, $type, $avatar_data)

    Thank you in advance!

    #320107
    schlauti
    Participant

    By registering, I accept the terms of use. I’m looking for that for buddypress

    #320106

    In reply to: BuddyPress 9.0.0

    schlauti
    Participant

    Search for a plugin for youth protection for Buddypress, which gives 4 age groups with age calculations and contact restrictions – 12 years to 14 years – only contact option everything above is not allowed by the system and the younger ones should not be able to see the older ones and vice versa exactly the same – 14 years to 16 years – as for the age group from 12 to 14 – 16 years to 18 years – exactly as with the previous groups – no limit from 18 to 99 years + years.

    #320105

    In reply to: Email to site owner

    Varun Dubey
    Participant

    @go2people default functionality, WP send an email notification to admin when someone registered, you can also create using Email Options for BuddyPress

    melbatoast4
    Participant

    I’m using MemberPress and BuddyPress. I have all other plugins disabled at the moment. My problem: I’m using the BuddyPress members feature that shows a list of all the members. But when I click on a name in the list, it does not go to their profile.

    For example, mysite.com/members displays all the members, paginated, but if I click on a member’s name, it goes to mysite.com/members/member-name, and not mysite.com/members/member-name/profile. It was working earlier today. Any ideas?

    My BuddyPress settings are all defaults. WordPress 5.7.2, BuddyPress—same behavior on previous version and 9.0. My site is members only (and still in development), so I can’t link to the page with the issue.

    #320081

    Topic: Pending Emails

    in group forum Requests & Feedback
    geracola
    Participant

    Hi guys,

    i can’t understand what’s wrong with my buddypress emails. Users can’t receive them, It seems they are not sent at all, but into users section they are in a pending status. Also if i try to send them again, from user section, nothing happen.

    Do you have any suggestion to discover what happen?

    #320069
    schlauti
    Participant

    Search for a plugin for youth protection for Buddypress, which gives 4 age groups with age calculations and contact restrictions – 12 years to 14 years – only contact option everything above is not allowed by the system and the younger ones should not be able to see the older ones and vice versa exactly the same – 14 years to 16 years – as for the age group from 12 to 14 – 16 years to 18 years – exactly as with the previous groups – no limit from 18 to 99 years + years. This is what you need in Germany

    communitypivot
    Participant

    We have added the “Buddypress Global Search” plugin, and while viewing the search results, the activity/ activity comments are not clickable. We want to let the user select an activity, and view the comments/interactions on a separate page. How do we do this? Should we change the permalink settings? What is the permalink/ the plugin settings to make this possible?

    #320052
    Varun Dubey
    Participant

    @rightsizeyourhome contact theme support to update register.php as per BP 8.0 structure
    path: woffice/buddypress/members/register.php

    rightsizeyourhome
    Participant

    I need help fixing our registration page. See error encountered below:

    Fatal error: Uncaught Error: Call to a member function profile_groups() on null in /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php:101 Stack trace: #0 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/themes/woffice/buddypress/members/register.php(53): bp_profile_groups() #1 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-includes/template.php(732): require(‘/home/customer/…’) #2 /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(165): load_template(‘/home/customer/…’, false, Array) #3 /home/customer/www/members.rightsizeyourhome.com.au/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/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(350): bp_get_template_ in /home/customer/www/members.rightsizeyourhome.com.au/public_html/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-template.php on line 101

    schlauti
    Participant

    Search for a plugin for youth protection for Buddypress, which gives 4 age groups with age calculations and contact restrictions – 12 years to 14 years – only contact option everything above is not allowed by the system and the younger ones should not be able to see the older ones and vice versa exactly the same – 14 years to 16 years – as for the age group from 12 to 14 – 16 years to 18 years – exactly as with the previous groups – no limit from 18 to 99 years + years.

    #320037
    wbcomdesigns
    Participant
    tanyajaynep
    Participant

    When I go to BuddyPress Pages in settings I get this –

    “Registration is currently disabled. Before associating a page is allowed, please enable registration by selecting either the “User accounts may be registered” or “Both sites and user accounts can be registered” option on this page.”

    So I go to the Network Settings and have allowed user registrations & saved. Refresh the page and it says that user registrations are allowed.

    But if I go back to the BuddyPress settings I still get the message (above) that I need to allow registrations!

    Help!

    ftc1
    Participant

    Hi,

    Please help me, i installed buddypress and everything works fine, except whenever i log in and click on profile, i get redirected to a page which has not header or structure whatsoever (https://www.merrygokids.com/members/oyeakd/profile/)…..that is the link for me. but my problem is i want to edit or customize or at least add an header to it but it simply does not exist in backend.

    Please help me

    my site = merrygokids.com

    theme = teriz onepage multipurpose

    wordpress = 5.7.2

    buddypress = 8.0.0

    benofinil
    Participant

    Hello !

    First of all, I apologize if the answer already exists, but I am new to the php language, and I do not understand much …

    I created a website for an organization, and I set up a community space thanks to Buddy Press and Youzify.

    Here is my question: I want to make this space completely closed, and not accessible to non-logged in users. I tried putting this php code in wp-content / plugins / bp-custom.php:

    <? php
    / **
    * Redirect the Buddypress directories to the login page for non logged in users.
    * /
    function yzc_redirect_bp_directories_to_login_page () {

    if (! is_user_logged_in () && (bp_is_groups_directory () || bp_is_members_directory ())) {

    // Get pages Buddypress;
    $ bp_pages = get_option (‘bp-pages’);

    // Get the redirection URL
    $ redirect_url = youzify_get_login_page_url ();

    wp_redirect ($ redirect_url);
    go out();
    }
    }

    add_action (‘template_redirect’, ‘yzc_redirect_bp_directories_to_login_page’);

    Now unconnected users cannot have access to member directory and groups directory, but I would like to block access to all BuddyPress pages (such as member profile pages, activity page. ..) and redirect to the login page.

    Could someone help me complete this piece of code?
    Thank you for your help

    pandex
    Participant

    My website is Buddypress + WordPress
    and when I use copy and paste any GIF in my site’s timeline, nothing just happens.

    Now when I do this on a site similar to mine, it works perfectly

    Site similar to mine
    [video src="https://i.gyazo.com/db7a160ee9c022081e231dea1e3b2e0f.mp4" /]

    My site

    [video src="https://i.gyazo.com/ab92d5b537fb00dfb681edb5ed9c48c3.mp4" /]

    Is there any way to fix this?

Viewing 25 results - 2,626 through 2,650 (of 73,371 total)
Skip to toolbar