Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 1,576 through 1,600 (of 69,120 total)
  • Author
    Search Results
  • #325924
    wiktormatata
    Participant

    Hello , i started creating my website using buddypress , when my users login they are redirected to the my profile page. The problem is that they still can access wp dashboard by typing /wp-admin after my page url.

    Is there any way to block access to /wp-admin for non administrators ?

    Thank you for reading , hope someone can help me :/

    #325913
    Anonymous User 18187419
    Inactive

    If this happened after update to latest Buddypress, maybe roll-back to last working version? (I’m still on 9.1.1)

    WP Rollback plugin available in WP plugins repository.

    If you use it, be sure to take a full backup of your site first.

    #325909
    girlinbluemusic
    Participant

    I’m not sure which version this started happening with, but in the last I want to say month or so, there’s a random string of jquery at the top of all of the Buddypress pages on my website:

    https://girlinbluemusic.com/wp-content/uploads/2022/08/jquery.jpg

    I have confirmed that this still happens with the 2021, 2020, and 2017 themes, and it only seems to happen with the Buddypress plugin alone.

    Anyone have any idea how to get rid of this issue? I’ve also had some other recaptcha issues with my site, and I’m not sure if it’s related to this or to another plugin, but one thing at a time.

    #325908
    mahjoorsami
    Participant

    Hi,
    I am facing really strange issue, as I updated buddypress to latest version and now all the member/user pages show 404 error except for administrator it works fine and good. but all other users it shows 404 error.
    I need quick help with it.
    Thank you.

    #325907
    lukas22
    Participant

    Hi,

    I have a Rehub theme and Buddypress there. The problem is that the customer can write with the customer, but I want the customer to be able to write only with the seller. Can it be reduced like that?
    Also, in the messages tab, the customer can see all the people registered on the site, is there any way to limit this?
    Well thank you.

    Lukas

    jesric1029
    Participant

    Hello there,

    A while ago I installed BuddyBuilder and attempted to create my own profile page. Something broke and since then I am unable to access any profile page. I have tried creating a brand new page and selecting it in the Buddypress settings. I have tried uninstalling buddybuilder. I’ve tried removing all of the xprofile fields and even uninstalling it. Absolutely nothing will work and I geta critical error every time. Hoping someone can help me. Here is the stack trace:

    WordPress version 6.0.1
    Active theme: Twenty Twenty-One (version 1.5)
    Current plugin: BuddyBuilder Pro (version 1.6.7)
    PHP version 7.4.26
    
    Error Details
    =============
    An error of type E_ERROR was caused in line 81 of the file /mnt/customers-man/customers-el-2731002-14723-clubhx-wordpress-pvc-61003d1e6074e8003173bf8a/wp-content/wp-content/plugins/stax-buddy-builder-pro/core/dynamic-tags/MemberXProfileTag.php. Error message: Uncaught Error: Call to undefined function Buddy_Builder_Pro\bp_get_profile_field_data() in /mnt/customers-man/customers-el-2731002-14723-clubhx-wordpress-pvc-61003d1e6074e8003173bf8a/wp-content/wp-content/plugins/stax-buddy-builder-pro/core/dynamic-tags/MemberXProfileTag.php:81
    Stack trace:
    #0 /mnt/customers-man/customers-el-2731002-14723-clubhx-wordpress-pvc-61003d1e6074e8003173bf8a/wp-content/wp-content/plugins/elementor/core/dynamic-tags/tag.php(35): Buddy_Builder_Pro\MemberXProfileTag->render()
    #1 /mnt/customers-man/customers-el-2731002-14723-clubhx-wordpress-pvc-61003d1e6074e8003173bf8a/wp-content/wp-content/plugins/elementor/core/dynamic-tags/manager.php(216): Elementor\Core\DynamicTags\Tag->get_content()
    #2 [internal function]: Elementor\Core\DynamicTags\Manager->get_tag_data_content()
    #3 /mnt/customers-man/customers-el-2731002-14723-clubhx-wordpress-pvc-61003d1e6074e8003173bf8a/wp-content/wp-content/plugins/elementor/core/dynamic-tags/manager.php(109): call_user_func_array()
    #4 /mnt/customers-man/cus
    #325865
    MickFrench
    Participant

    Thank you Michael, it works using Code Snippets with this code:
    /**
    * Exclude Users from BuddyPress Members List by WordPress role.
    *
    * @param array $args args.
    *
    * @return array
    */
    function buddydev_exclude_users_by_role( $args ) {
    // do not exclude in admin.
    if ( is_admin() && ! defined( ‘DOING_AJAX’ ) ) {
    return $args;
    }

    $excluded = isset( $args[‘exclude’] ) ? $args[‘exclude’] : array();

    if ( ! is_array( $excluded ) ) {
    $excluded = explode( ‘,’, $excluded );
    }

    $role = ‘administrator’;// change to the role to be excluded.
    $user_ids = get_users( array( ‘role’ => $role, ‘fields’ => ‘ID’ ) );

    $excluded = array_merge( $excluded, $user_ids );

    $args[‘exclude’] = $excluded;

    return $args;
    }

    add_filter( ‘bp_after_has_members_parse_args’, ‘buddydev_exclude_users_by_role’ );

    #325861
    David Cavins
    Keymaster

    Thank you for reporting this issue. The fix is in this commit: https://buddypress.trac.wordpress.org/changeset/13320

    We’ll release a maintenance release to address it, but if you need it fixed now, add the conditional in the commit is the solution.

    This issue only affects admin users using the Pending Memberships screen, so the problem shouldn’t cause any problems for your members. It also appears that it doesn’t break the membership requests workflow, as it occurs after the appropriate emails are sent.

    Thanks again for the reports!

    #325855
    MickFrench
    Participant

    Thank you Michael,
    It doesn’t work. I have tried the second code for admnins and also the first code by excluding users by ID (numbers of the admins I want to hide).
    Tried at the root of folder Plugins and BuddyPress, also into the code directly in functions.php of my theme Sydney… nothing works.
    Hoping you or someone have another idea ?

    #325853
    Anonymous User 18187419
    Inactive

    This should explain how …

    Hiding Users on BuddyPress based site

    #325837
    Mathieu Viet
    Moderator

    Hi thanks for the report, it looks like a bug with the site membership request feature @dcavins could you look at it?

    I wonder if it’s relative to https://buddypress.trac.wordpress.org/ticket/8693

    #325819
    MickFrench
    Participant

    Hello, I got the same error at same line 249 when I want to activate a pending account manually.
    This happen with
    WordPress version 6.0.1
    Active theme: Sydney
    Current plugin: BuddyPress (version 10.3.0)
    PHP version 7.4.30
    I tried with no plugin only the Sydney Theme. It happens also with precedent WP version.
    I see nothing bad except this error on an alert page.
    I have to go back and continue as admin.

    I’ve seen a topic where Mathieu Viet & David Cavins are working on it last 8 month.
    /bp-members/bp-members-membership-requests.php:249
    May be they can take a look ?
    Thank you

    baedyllion
    Participant

    Hello all,

    I’m trying to find a solution for my problem.
    I have two websites where buddypress is installed. (www.example1.com, http://www.example2.com).
    On both websites, my users are the same ( emails, usernames, user profile fields etc).
    On both websites, when user is clicked, It is redirected to http://www.example1.com/members/exampleuser/, http://www.example2.com/members/exampleuser/. What I want to achieve is, on one of the websites, when a user is clicked via member directory or via group member listing, I want it to be redirected to other website’s member directory.

    Example:
    When a user is clicked via member directory or group member listing on http://www.example2.com, I want the user to be redirected to http://www.example1.com/members/exampleuser/, instead of http://www.example2.com/members/exampleuser/.

    I searched for a solution a lot for this but I didnt get any luck so far. I’d really appreciate any help in advance.
    Cheers.
    Baris.

    shanebp
    Moderator

    Go to wp-admin > Settings > BuddyPress and select the Components tab and assign the pages to the components.

    JKDuck
    Participant

    Hi,
    since I am a lost and have no idea were to start: how do I create WordPress pages for BuddyPress to use for Registration and Activation? I know how to crate WordPress pages – but …
    Did not find anyting here ..
    Message shown: “Die folgenden aktiven BuddyPress Komponenten haben keine damit verbundenen WordPress Seiten: Aktivieren, Registrieren. Reparieren”
    “The following active BuddyPress components have no associated WordPress pages: Activate, Register. Repair”
    WordPress 6.0.1
    BuddyPress Version 10.3.0

    #325782
    shanebp
    Moderator

    > I am using buddyboss platform as plugin

    Please contact BuddyBOSS.
    These are the forums for BuddyPRESS.

    #325765
    jgprkatelyn
    Participant

    When using the Kadence child theme and BuddyPress, I’m getting a small viewport to see the uploaded image and crop area. Is there a way to fix this issue? Once I crop it, it’s not showing the whole image either. It just shows a section of what I’ve cropped.

    Any additional assistance would be wonderful.

    sonetian
    Participant

    Hello, I have just launched a social media site on local host and i use buddypress but any mail is not working like activation code, password reset, forgot password and any kind of email is not working. Then I installed third party SMTP plugin to work with that i don’t want to use, again in vain after a lot of setup process with client id and secret id in google SMTP.

    All I need to operate my site without email hesitation. Kindly help me to solve it for my users.

    Thank you

    Michael
    Participant

    Update: The bug only exists only with the BuddyPress Legacy template pack. It does not occur with the BuddyPress Nouveau template back.

    chernovdaniel
    Participant

    Hello!
    Recently my Buddypress pages stopped working. If I try to open any of them I get the following error:
    “Fatal error: Uncaught Error: Call to a member function is_built_with_elementor() on bool in /home/customer/www/ruta17.org/public_html/wp-content/plugins/essential-addons-for-elementor-lite/includes/Classes/Elements_Manager.php:210 Stack trace: #0 /home/customer/www/ruta17.org/public_html/wp-content/plugins/essential-addons-for-elementor-lite/includes/Classes/Elements_Manager.php(137): Essential_Addons_Elementor\Classes\Elements_Manager->save_widgets_list(0, Array, ”) #1 /home/customer/www/ruta17.org/public_html/wp-content/plugins/essential-addons-for-elementor-lite/includes/Classes/Asset_Builder.php(120): Essential_Addons_Elementor\Classes\Elements_Manager->get_element_list(0) #2 /home/customer/www/ruta17.org/public_html/wp-includes/class-wp-hook.php(307): Essential_Addons_Elementor\Classes\Asset_Builder->frontend_asset_load(”) #3 /home/customer/www/ruta17.org/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(NULL, Array) #4 /home/customer/www/ruta17.org/public_html/wp-includes/plugin.php(476): WP_H in /home/customer/www/ruta17.org/public_html/wp-content/plugins/essential-addons-for-elementor-lite/includes/Classes/Elements_Manager.php on line 210″

    Seems to be related to elementor or the essential addons, but neither got updated recently as far as I know.
    Do you know how to fix this?

    Thanks!!

    webmark487
    Participant

    Hi!

    How can I hide the BuddyPress “Profile Fields” menu entry (in the WP backend) for non-admin users?

    https://pasteboard.co/osvfH8ty1JYk.jpg

    They should not be able to make changes there.

    Thx in advance and best regards
    Markus

    Michael
    Participant

    If you set an activity filter on an activity page, BuddyPress will only set a cookie (bp-activity-filter) if the visitor is logged in. If a user is not logged the cookie is not set. The result is that if a visitor who is not logged-in clicks “load more,” the filter is no longer active on the new result page.

    This bug exists already for many years. Does anyone know a workaround?

    #325749
    jerkerfejjan
    Participant

    Hi, I have used BuddyPress fore some time, and it works fore my customers needs. But earlier I was trying to do a simple query (bp user query) to find all “teachers” that had the right xprofile_query field_name with value. It almost works well. I have the query on a local server with only 4 “teachers” and the same on a public server with 13000 “teachers” the result is the same. If I use this query for array:

    $lararsusers = array(
    ‘role’ => ‘contributor’,
    ‘orderby’ => ‘first_name’,
    ‘order’ => ‘DESC’,
    ‘xprofile_query’ => array(
    ‘relation’ => ‘AND’,
    array(
    ‘field_name’ => ‘Samkoppling’,
    ‘value’ => $kolladenna,
    ‘compare’ => ‘LIKE’
    )
    )
    );
    $users = new BP_User_Query($lararsusers);

    The result with BP_User_Query will always be that I will miss some user, even on the local server with only 4 teachers I will only get 3. But if I change BP_User_Query to WP_User_Query I will find everyone that I am looking for, no misstakes, but the query takes to long if I run it on the public server with 13000 teachers.

    Is there anyone who can help me, something is wrong.
    I´m most thankful for help.

    rtahina
    Participant

    Hello all,

    I am having trouble using the Tatsu Builder (https://tatsubuilder.com/) on Buddypress pages (ex the member directory page). Each time I want to use the media uploader (or media library) it tells me that https://xxx.test/wp-admin/admin-ajax.php is not found and the popup freezes on the loading part. The json response that is received tells me there is no error though (success is true with the appropriate data element)

    When I edit the same page with the classic WP editor, the media uploader shows up perfectly. Has anyone run into the same issue or what could be the problem here. I asked the Tatsu builder support but they said it’s a Buddypress issue.

    Thank you for your help.

    Wordpress v6.0
    Buddypress v10.3.0
    Tatsu v3.4.0

    webmark487
    Participant

    Hi!

    I get the following error message on https://greenfilmnet.org (only when logged in!):

    Warning: Creating default object from empty value in /home/.sites/838/site2533937/web/wp-content/plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php on line 771

    Any idea what the problem could be?

    Best regards and thank you in advance
    Markus

    WordPress 6.0.1
    Buddypress 10.3.0

Viewing 25 results - 1,576 through 1,600 (of 69,120 total)
Skip to toolbar