Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 726 through 750 (of 32,561 total)
  • Author
    Search Results
  • #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.

    #325457
    alabandit
    Participant

    Since this didn’t throw any error I’m listing it to help others quickly spot what’s going on. I did try searching things like “white screen” and the install guide but didn’t have any luck. But I see it does list this advice when you create a new support topic.

    Downloaded a fresh copy of WordPress and BuddyPress no other modules were installed.
    Default Theme Twenty Twenty-Two
    No special setup

    Created a new forum (/wp-admin/post-new.php?post_type=forum)
    Clicked the link to view the new forum and was simply shown a white screen.

    No error messages or warnings.

    Everything else worked great.

    I changed the theme to Twenty Twenty and all was perfect.

    #325456
    wcholbi
    Participant

    Hi Mathieu, thank you for this suggestion, but I’m sorry to report that this does not fix the error for me.

    First I added a bp-custom.php file containing your code, following the instructions you linked to, and the same fatal error still occurred on any attempt to add a new page or post.

    Next, I tried deactivating ALL plugins except for BuddyPress, and switching to the Twenty Twenty theme. This error still occurs, even when the only plugin active is BuddyPress, on a default WP theme, both with the new bp-custom.php file and without it. I did this on the development environment for the site: https://edrmdev.wpengine.com/

    So I’m really at a loss, having tried every recommended troubleshooting technique.

    Is there anything else you can suggest?

    I’m happy to test anything that might work.

    #325422
    shanebp
    Moderator

    Yes. BP creates a ‘dummy’ post.
    For example, see
    public function single_dummy_post()
    in
    buddypress\bp-members\classes\class-bp-members-theme-compat.php

    To check if you’re on the members directory, use:
    if( bp_current_component('members') )

    lbnn
    Participant

    Hello,

    I want to create multiple members pages based on field value.

    For example let’s say I have a field called “Team” and values are 1,2 and 3.

    I want to create a members page for each teams showing team members.

    I found this code to create a function that will filter based on the field value :

    function my_custom_ids( $field_name, $field_value = '' )

    I fount it HERE

    I understood I need to add this code in my-theme/functions.php or in bp-custom.php but after that how can I call this function on the 3 different pages with the 3 different fields values ??

    The code on the three pages will be like that if I understood well :

    <?php if ( bp_has_members( my_custom_ids( 'Team', '1' ) ) ) : ?>
    <?php if ( bp_has_members( my_custom_ids( 'Team', '2' ) ) ) : ?>
    <?php if ( bp_has_members( my_custom_ids( 'Team', '3' ) ) ) : ?>

    I missed something, I really don’t know where to put the code that call the created function on the new page I created :/

    Thank you for your help

    mounasis
    Participant

    Hello i use buddypress with masterstudy theme i activated private message on the buddypress settings but it’s not showing on the profile page
    I need help with this

    #325397
    Mathieu Viet
    Moderator

    Hi thanks for your feedback and sorry you’re having trouble between BP & PHP 8.0. I also use it but can’t manage to reproduce your issue. You can fix this trouble easily though. You simply need to add the following code:

    
    <?php
    remove_filter( 'block_editor_rest_api_preload_paths', 'bp_blocks_preload_paths' );
    

    into a bp-custom.php file and put it in /wp-content/plugins as explained here: https://codex.buddypress.org/themes/bp-custom-php/

    #325390
    romandas
    Participant

    I also have error with BuddyPress:
    WordPress version 6.0.1
    Active theme: OneCommunity Child Theme (version )
    BuddyPress (version 10.3.0)
    PHP version 8.1.0

    Uncaught Error: Class "BP_Admin" not found in ..../wp-content/plugins/buddypress/bp-core/bp-core-admin.php:20

    It works ok, if I set PHP to 7.4 version.
    Site works ok with PHP 8.1.0 if i disable BuddyPress plugin.

    #325373
    DragoWeb
    Participant

    Hello,

    It’s been a while since I’m looking for a simple way to filter the activity posts according to the language displayed when publishing. Actually, when we manage a site in multiple languages (via WPML, Polylang, or other) the problem is that all the activity publications in all different languages are mixed on the same page. A simple solution would be to add a class for each li element.

    So, we start by identifying the language of the page when we click on “Post update”:

    $lang = get_bloginfo('language');

    then we inject it into the database so that it appears as a class on each li element (activity-en_US ; activity-fr_FR…)

    Then we just have to add a CSS line like

    body.fr li.activity-en_US, body.en li.activity-fr_FR { display: none; }

    An of course, we have to add a language class for body via body_class, (like this, if you use WPML, for example) in the functions.php child theme.

    `function body_class_language( $classes ) {
    if ( ICL_LANGUAGE_CODE == ‘en’ ) {
    $classes[] = ‘en’;
    } elseif ( ICL_LANGUAGE_CODE == ‘en’ ) {
    $classes[] = ‘en’;
    }
    return $classes;
    }
    add_filter(‘body_class’, ‘body_class_language’);`

    Is it possible? Can anyone help me with this? Or maybe you have a better idea or solution to solve this? I know HTML/CSS very well, but I’m still struggling with PHP/SQL 😅 Thanks

    wcholbi
    Participant

    WordPress version: 6.0.1 (this error also occurred when using 6.0)
    BuddyPress version: 10.3.0
    Site: https://edrmstaging.wpengine.com

    I have verified that the error occurs even when using Twenty Twenty (normally we have a different theme in use), and that the error appears to be fixed by deactivating BuddyPress.

    After updating to PHP 8.0, this fatal error is triggered when attempting to add a new WordPress post or duplicating an existing post:

    PHP Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /nas/content/live/edrmstaging/wp-content/plugins/buddypress/bp-core/classes/class-bp-rest-components-endpoint.php:102\nStack trace:\n#0 /nas/content/live/edrmstaging/wp-includes/rest-api/class-wp-rest-server.php(1143): BP_REST_Components_Endpoint->get_items(Object(WP_REST_Request))\n#1 /nas/content/live/edrmstaging/wp-includes/rest-api/class-wp-rest-server.php(990): WP_REST_Server->respond_to_request(Object(WP_REST_Request), '/buddypress/v1/...', Array, NULL)\n#2 /nas/content/live/edrmstaging/wp-includes/rest-api.php(519): WP_REST_Server->dispatch(Object(WP_REST_Request))\n#3 /nas/content/live/edrmstaging/wp-includes/rest-api.php(2868): rest_do_request(Object(WP_REST_Request))\n#4 [internal function]: rest_preload_api_request(Array, '/buddypress/v1/...')\n#5 /nas/content/live/edrmstaging/wp-includes/block-editor.php(601): array_reduce(Array, 'rest_preload_ap...', Array)\n#6 /nas/content/live/edrmstaging/wp-admin/edit-form-blocks.php(75): block_editor_rest_api_preload(Array, Object(WP_Block_Editor_Context))\n#7 /nas/content/live/edrmstaging/wp-admin/post-new.php(72): require('/nas/content/li...')\n#8 {main}\n thrown in /nas/content/live/edrmstaging/wp-content/plugins/buddypress/bp-core/classes/class-bp-rest-components-endpoint.php on line 102, referer: https://edrmstaging.wpengine.com/wp-admin/?wpengine_php=8.0

    The contents of line 102 of buddypress/bp-core/classes/class-bp-rest-components-endpoint.php are:

    $active_components['core'] = $components['core'];

    Please let me know what I should try. I’m happy to test code fixes but I don’t know how to edit this line correctly. Thank you.

    #325363
    melbatoast4
    Participant

    My site with no other plugins and default WP theme:

    #325362
    melbatoast4
    Participant

    I also deactivated my theme and used a default theme, and same result.

    #325353
    baby.face
    Participant

    I disabled all the plugins and switched the theme to twenty-twenty-two. There is no bp-custom.php file. I also downloaded the latest version of BuddyPress and replaced the original BP 10.3.0 plugin folder with the newly downloaded one. I am running PHP 7.4.

    The same fatal error persists while the user requesting site access gets approved.

    Here is the fatal error from the error screen:
    Fatal error: Uncaught Error: Class ‘BP_Notifications_Notification’ not found in /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/bp-members-membership-requests.php:249 Stack trace: #0 /home/nondualhealersas/public_html/wp-includes/class-wp-hook.php(309): bp_members_membership_requests_delete_notifications_on_change(Array) #1 /home/nondualhealersas/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(false, Array) #2 /home/nondualhealersas/public_html/wp-includes/plugin.php(476): WP_Hook->do_action(Array) #3 /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/classes/class-bp-signup.php(961): do_action(‘bp_core_signup_…’, Array, Array) #4 /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-admin.php(1816): BP_Signup::activate(Array) #5 /home/nondualhealersas/public_html/wp-includes/class-wp-hook.php(307): BP_Members_Admin->signups_admin_load(”) #6 /home/nondualhealersas/public_html/wp-includes/class-wp-h in /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/bp-members-membership-requests.php on line 249

    Also, from WordPress’s built-in fatal error detection feature:

    WordPress version 6.0.1
    Active theme: Twenty Twenty-Two (version 1.2)
    Current plugin: BuddyPress (version 10.3.0)
    PHP version 7.4.30

    Error Details
    =============
    An error of type E_ERROR was caused in line 249 of the file /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/bp-members-membership-requests.php. Error message: Uncaught Error: Class ‘BP_Notifications_Notification’ not found in /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/bp-members-membership-requests.php:249
    Stack trace:
    #0 /home/nondualhealersas/public_html/wp-includes/class-wp-hook.php(309): bp_members_membership_requests_delete_notifications_on_change(Array)
    #1 /home/nondualhealersas/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(false, Array)
    #2 /home/nondualhealersas/public_html/wp-includes/plugin.php(476): WP_Hook->do_action(Array)
    #3 /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/classes/class-bp-signup.php(961): do_action(‘bp_core_signup_…’, Array, Array)
    #4 /home/nondualhealersas/public_html/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-admin.php(1816): BP_Signup::activate(Array)
    #5 /home/nondualhealersas/public_html/wp-includes/class-wp-hook.php(307): BP_Members_Admin->signups_admin_load(”)
    #6 /home/nondualhealersas/public_html/wp-includes/class-wp-h

    In addition, the only other BP plugin I had been using was BuddyPress Xprofile Custom Field Types Version 1.2.4 by BuddyDev. This has been disabled along with everything other than the BP plugin so I’m not sure if this has any relevance.

    Assistance would be appreciated.

    #325345
    pycc
    Participant

    Its not work for me,
    I disabled all plugins, and change my theme to a wordpress theme,
    I upgrade my PHP version to 7.4

    I don’t found the bp-custom.php file
    And I have the last version of buddypress 10.3.0

    the issue still exists
    Fatal error: Uncaught Error: Class 'BP_Notifications_Notification' not found in /home/logimtqa/sites/giz/wp-content/plugins/buddypress/bp-members/bp-members-membership-requests.php:249

    #325343
    pycc
    Participant

    Its not work for me,
    I disabled all plugins, and change my theme to a wordpress theme,
    I upgrade my PHP version to 7.4

    I don’t found the bp-custom.php file
    And I have the last version of buddypress 10.3.0

    Youzify
    Participant

    Hi @mand01

    I don’t think the issue that does not come from Gwangi theme. You may try install WP SMTP plugin and set the mailer as PHP (Default).

    WP Mail SMTP by WPForms

    Youzify
    Participant

    Hi @diogolinoribeiro

    You may try disable all non BuddyPress plugin and change your WP theme to default theme for temporary.

    Check site to see if issue still exists. If issue goes away after deactivating other plugins and switching theme then this means that either the theme or one of the plugins was conflicting with BuddyPress. If it turns out to be a plugin/theme conflict, then you need to activate the plugins/theme one by one until you find the plugin/theme that causes the issue to come back.

    If the issue still exists then it is not a plugin or theme conflict. And do these things

    1. If you have a custom code in bp-custom.php, please remove it for temporary
    2. Make sure to use the latest version of BuddyPress
    3. Check your PHP version, and upgrade it to minimum 7.4 version.

    PS: Backup your website first before do those steps!

    #325333
    Youzify
    Participant

    Hi @babyface-1 @pycc

    You may try disable all non BuddyPress plugin and change your WP theme to default theme for temporary.

    Check site to see if issue still exists. If issue goes away after deactivating other plugins and switching theme then this means that either the theme or one of the plugins was conflicting with BuddyPress. If it turns out to be a plugin/theme conflict, then you need to activate the plugins/theme one by one until you find the plugin/theme that causes the issue to come back.

    If the issue still exists then it is not a plugin or theme conflict. And do these things

    1. If you have a custom code in bp-custom.php, please remove it for temporary
    2. Make sure to use the latest version of BuddyPress
    3. Check your PHP version, and upgrade it to minimum 7.4 version.

    PS: Backup your website first before do those steps!

    olafkjelberg123
    Participant

    Hello, I want to know if its possible to limit the private messaging between user and admin only because I want to make a website where you can message the administrator of the website to access the services provided by the administrator.

    Wordpress version: WordPress 6.0.1
    Theme: Hello ElementorVersion: 2.6.1

    Thanks everyone, I appreciate the help!

    dheerajmidha
    Participant

    Hello
    i talked to sweat date theme develover
    they tolld me to do few changes
    i did all like disabled their theme and as well as all other plugins except buddypress
    still problem is there
    so buddypress plugin core has any bug
    pls check if you can
    Thanks in advance

    #325296
    Skanky
    Participant

    I’ve a new BuddyPress site with 3 members. Member1 is the admin and sole member of a new group. Member2 is their Friend, the Member3 is not.
    When Member1 the group admin visits the group page and selects Invite Members all that is shown is “No friends were found. Try another filter.”
    Selecting ‘My Friends’ or ‘AllMembers’ results in the same message.
    Both Member2 and Member3 are not members of the group and both do not have pending invitations. Both users have logged into their account (its fully activated).
    If I select WP default theme Twenty Twenty-Two and disable all plugins other than BuddyPress issue is the same.
    I’m at a loss to explain it and get Invite members working. Does anyone know of any gotchas that I might not be aware of?

    dheerajmidha
    Participant

    Hello
    Thanks A lot for your quick response
    i have apply all the steps that you suggested
    like theme is update
    i was using legacy form already
    i have debug also ut no outcome
    pls suggest more if you can
    Thanks

    Youzify
    Participant

    Hi @dheerajmidha

    1. Please try to update your theme to the newest version

    2. If you use the BP Nouveau, please change it to Legacy

    3. You may also activate debug mode and check if you can see an error message on your front-end

    Debugging in WordPress

    dheerajmidha
    Participant

    Hello
    i am using sweat date theme and in my admin panel when i want to change the users profile in extended profile tab change button is not clickable (working).
    worpress version 6
    buddypress verion 10.3
    iam using some third party plugins also
    i have chechcked with all the plugns after disabling them stil the change button in extended tab in users not working
    pls healp
    Thanks in advance

    founderpat
    Participant

    I’m running a site (using the theme BuddyPress X, which is a close relative of the BuddyPress theme) where people can create public groups. It is possible to view files that are uploaded in public groups without signing in, however, if you want to view the Group itself, even Public Groups, you have to sign into the site to be able to do so. Is it possible to allow anyone who uses the site (not being signed in) access to Public Groups?

Viewing 25 results - 726 through 750 (of 32,561 total)
Skip to toolbar