Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 101 through 125 (of 31,071 total)
  • Author
    Search Results
  • #335596
    wpuser
    Participant

    I already troobleshooted that ofcourse.

    I tried it with the basic twenty seven theme and with no other plugins enabled. I did not make any customizations.

    #335595
    GyziieDK
    Participant

    Hello @forinn

    Works fine for me, so sounds like a third-party conflict or maybe an issue within your theme.

    Have you tried troubleshooting the issues? (Cleared cache, tested compatibility within plugins and so on?)

    glenphillips33
    Participant

    Hi BuddyPress Community,

    I’m using BuddyPress to create a community on my website, but I’m having trouble with user profile pages not displaying correctly. When members view their profile, the layout is broken, and certain elements (like the profile picture and activity feed) aren’t showing up as they should.

    Here’s what I’ve tried so far:

    Checked for conflicts with my WordPress theme (using a BuddyPress-compatible theme).
    Disabled other plugins to see if they’re causing issues, but the problem persists.
    Cleared the site cache and checked the site in multiple browsers, but no luck.
    Could there be a setting in BuddyPress I’m missing, or does anyone have tips for troubleshooting profile page display issues? I’d appreciate any guidance on how to get these pages to look as intended!

    Thanks in advance!

    #335571
    kirstendrennan
    Participant

    This issue may occur due to compatibility changes in the update from version 11.4.0 to 12.0, where widgets or widget areas could be removed or reset. To fix this, first ensure that any theme or plugin you’re using, especially BuddyPress or similar, is updated to the latest version compatible with 12.0. After updating, try re-adding widgets manually through Appearance > Widgets or using the Customizer. You may also consider testing in a staging environment before updating to identify any potential conflicts. Source: Offical Fintechzoom.

    #335556
    GyziieDK
    Participant

    Thank you for this plugin @dcavins!

    Didn’t know someone took the time to update the old “BP Group Hierarchy” plugin by David Dean.

    Can confirm it works for me with the following setup:

    WordPress - Version 6.6.2
    BuddyPress - Version 14.2.1
    Template Pack - Legacy

    The only minor issue I’m having is that my theme doesn’t support the setting:
    Replace the flat groups directory with a hierarchical directory.

    This makes sense though and isn’t necessary.

    Thank you for updating this. 🙂

    #335553
    David Cavins
    Keymaster

    Hi Marco,

    I’m the author of the plugin you linked above, and the plugin doesn’t help much with BP Nouveau, but I’m not seeing any fatal errors. Can you share your setup? I’m using WP 6.6.2 and BP 14.2.1 with Legacy or Nouveau template packs and the twenty twenty-four theme.

    Thanks!

    #335550
    kaihanga2
    Participant

    Hi

    I’m using BBPress with BuddyPress in a WordPress site with MicroOffice theme. We’ve notice recently that the BuddyPress Activity Feed is no longer updating when someone Favourites a Forum post inf BBPress. I’ve tried turning off all other plugins to no avail. I’ve also delted and reinstalled buddypress.

    Also I’ve notice the BuddyPress RSS feed is not working, and when I go into the activity feed domain.com/activity (for example) it will say 9 favourites but when you click o it you only see two listed. Its also not increasing from 9 when I click on forum items favourite button.

    Does anyone have any ideas please?

    #335549
    taadike
    Participant

    I’m using the latest wordpress default block theme. Where can I swap template for buddypress pages? Currently buddypress is using the default “pages” template for all buddypress related pages.
    How to apply another page template to buddypress? There is no way to “edit page”.

    #335548
    taadike
    Participant

    I have the same problem. I’m also using the latest wordpress default block theme. Where can I swap template for buddypress pages? Currently it is using the default “pages” template for all buddypress pages.
    How to apply another page template to buddypress?

    I am amazed how few people have asked this. It should be the number 1 question.

    #335473
    flamuren
    Participant

    Hi,

    I have a buddypress theme installed that allows to handle WPJM plugin for job and resume registrations. For this latter I need the users to register as candidate or employer to control who can view resumes or post jobs etc.

    However the theme dont have this per standard but their support where very kind to give me a suggested custom code to handle this. I cant get this to work and wonder if someone knows what might be missing?

    This is what they wrote me for this question:

    Create a Profile Field for “Role”: Set options like “Employer” and “Candidate” for users to select during registration.
    Use Code to Assign the Role: A code snippet can assign the correct role based on the user’s selection in this profile field.

    Please let us know if you’d like guidance on the custom code snippet to achieve this or if you’d prefer assistance from a developer.

    Here is a code snippet you can use to assign a user role based on the value selected in a custom BuddyPress profile field during registration. This example assumes the profile field is named “Role” and has values such as “Employer” or “Candidate.”

        function assign_role_based_on_profile_field($user_id) {
            // Get the BuddyPress profile data for the registered user
            if (function_exists('xprofile_get_field_data')) {
                $role_value = xprofile_get_field_data('Role', $user_id); // Replace 'Role' with the exact name of your profile field
    
                // Assign the user role based on the profile field value
                if ($role_value == 'Employer') {
                    // Assign 'employer' role
                    $user = new WP_User($user_id);
                    $user->set_role('employer'); // Replace 'employer' with the exact role slug
                } elseif ($role_value == 'Candidate') {
                    // Assign 'candidate' role
                    $user = new WP_User($user_id);
                    $user->set_role('candidate'); // Replace 'candidate' with the exact role slug
                } else {
                    // Default role if no specific selection is made
                    $user = new WP_User($user_id);
                    $user->set_role('subscriber'); // Or any other default role
                }
            }
        }
        add_action('bp_core_signup_user', 'assign_role_based_on_profile_field', 10, 1);

    Make sure the roles employer and candidate are defined in your site.

    I want to use the WPJM user roles as standard: employer and candidate. Not sure if the slug meant here is just ’employer’ and ‘candidate’ to be correct?

    Best regards,

    Flamuren

    MikeAlan
    Participant

    I am admin for a fairly comprehensive site, still under construction.
    I’m in the process of setting up the various sidebar widgets. They all work well except Sitewide notices, which has been set to be at the top of the right-hand sidebar, but it only displays a blank widget area, no title.
    The widget setup screen/right-hand sidebar/’sitewide Notices’ just says “Preview unavailable”
    Buddypress Settings/Private Messaging has been activated (ticked)
    There’s no “This is a notice to all users” box in the front end Messages/Compose screen.

    The site uses the latest versions of Buddypress and WordPress.
    The current theme is Theme4Press’s Evolve Plus

    I’ve tried deactivating all plugins except Buddypress.
    I have tried switching the theme to Twenty Seventeen, but all to no avail!

    Any help would be very much appreciated in getting the Sitewide Notices to work.

    #335400
    varunkamani
    Participant

    The site is using a child theme. Should I look for new and similar plugins to find a better solution?

    #335390
    GyziieDK
    Participant

    @varunkamani it’s not that simple.

    The vulnerability issue in this case is Cross Site Scripting (XSS).

    This could allow a malicious actor to inject malicious scripts, such as redirects, advertisements, and other HTML payloads into your website which will be executed when guests visit your site.

    It is a known risk in general to use outdated and unsupported plugins on any site.

    In order to “fix this” the plugin itself would need to be updated to reach the security standard. You can also look online for solutions to manage this, but it might not be the only vulnerability about the plugin itself. Like mentioned – old and outdated plugins are a risk.

    You could check out this link:
    Cross Site Scripting

    A solution could also be to use a different plugin that is updated and supported.

    What theme are you using?

    #335329
    jgbfg
    Participant

    Hi,
    you can copy the template-files from the plugin in your theme oder child theme directory and do the changes there.
    Cheers

    #335325
    jgbfg
    Participant

    Hello everybody,
    we need the buddypress members and single view to use a custom template.
    But the Buddypress Content always tale te page.html template.

    I tried to make a cusotn template “buddypress.html” in the template folder, but the Members page makes no use of it.

    Is there a way to adress a custom template-file in the twenty-twenst-four Theme?
    Like the buddyvibes-trunk theme is doing it?

    Thank you a lot

    stephunique
    Participant

    I forgot to mention, I am using BuddyX which is the official theme, but it is good to know I can try this if I use another theme.

    For some reason it seemed to have resolved itself: maybe because I added the Kirki Customizer Framework or the BP Classic and it took awhile to take effect. In any case, thank you very much.

    #335296
    timdavid01
    Participant

    I understand your frustration with BuddyPress not working as expected after installation. It can be tricky to set up sometimes. Have you tried the troubleshooting steps suggested, like disabling other plugins and switching to a default theme? This can help identify if there’s a conflict.

    Also, ensure that you’re using the latest version of BuddyPress and that your PHP version is at least 7.4, as this can impact performance. If you’re still facing issues, consider checking the BuddyPress forums for specific setup guides or common issues. Have you had a chance to reach out to their support or community for more tailored assistance?

    timdavid01
    Participant

    You can achieve a vertical display of profile fields in BuddyPress by adding some custom CSS. Try this:

    css
    #profile-fields .field {
    display: block;
    margin-bottom: 15px; /* Adjust spacing as needed */
    }
    Add this code to your theme’s custom CSS section or the Additional CSS section in the WordPress Customizer. This should stack your profile fields vertically with some space between them.

    Have you checked if your theme might have any specific settings that affect the layout of BuddyPress fields?

    usercba
    Participant

    We’re encountering a fatal error (which appears to have been a warning in php 7.4.33)
    We are using the following:
    WordPress version 6.6.2
    Active theme: Astra Child (version 1.0.0)
    Current plugin: BuddyPress (version 14.1.0)
    PHP version 8.2.24

    Error Details
    =============
    An error of type E_ERROR was caused in line 942 of the file /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-tools.php. Error message: Uncaught Error: Undefined constant “BP_XPROFILE_BASE_GROUP_NAME” in /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-tools.php:942
    Stack trace:
    #0 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/class-wp-hook.php(324): bp_core_admin_debug_information(Array)
    #1 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters(Array, Array)
    #2 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/includes/class-wp-debug-data.php(1487): apply_filters(‘debug_informati…’, Array)
    #3 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/site-health-info.php(36): WP_Debug_Data::debug_data()
    #4 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/includes/class-wp-site-health.php(68): require_once(‘/home/customer/…’)
    #5 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/class-wp-hook.php(324): WP_Site_Health->show_site_health_tab(‘debug’)
    #6 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(”, Array)
    #7 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
    #8 /home/customer/www/staging18.cbatraininginstitute.org/public_html/wp-admin/site-health.php(220): do_action(‘site_health_tab…’, ‘debug’)
    #9 {main}
    thrown

    #335269
    locker17
    Participant

    I made it work, but what I dont understand is:
    To ovrride the invitations loop I need to use: child-theme > bp-nouveau > members >single >invitaions
    But for the members-loop I was using child-theme > buddypress > members > members-loop.php

    Does that make sense?

    locker17
    Participant

    Hello,
    I need to override the invitations loop to change the tables to div.
    I copied the invitations-loop.php file from buddypress > bp-templates > bp-nouveau > buddypress > members > single > invitaions
    TO
    child-theme > buddypress > members > single > invitations

    It does not work? Why? What did I made wrong?

    jomsi
    Participant

    Hello there,

    My website is in French.

    Here is the page where I have an issue : https://demo-avec.com/inscription/

    As you can see, the label for the name field is half in english and half in french : Name (obligatoire)

    I am trying to find a solution to solve that issue.

    I want to display that text like this : Nom (obligatoire)

    I tried to find it in Buddypress Po file, but I couldn’t.

    I tried to change my theme, deactivate all plugins, empty my cache, upload Polylang plugin… Nothing works.

    The worst is that all the other fields have been automatically translated, but not this one.

    I’m getting mad with this issue, thanks for your help 😉

    jrsuser
    Participant

    Hello Community –
    Using Buddypress v.14.1.0 WordPress v. 6.6.2 with Multisite using Twenty Twenty Four theme and BP Nouveau:
    Does anyone have a code snippet to address the following:
    the search form box does not appear in Member Activity to the right of the RSS feed icon even though the search filter drop down appears.
    Have tried multiple ways to 1. get search form to appear – but cannot get it to work.
    If this has been addressed before in a topic, please reply with link.
    Thanks!

    #335250
    Kokiri
    Participant

    The developer has said “We don’t have any other reports of this and weren’t able to reproduce it.”.


    @flexn74

    Make sure to make a ticket so they can get this fixed.

    You can find the ticket system here: https://odindesignthemes.ticksy.com/submit/

    #335244
    flexn74
    Participant

    Same problem.

    WordPress 6.2.2
    Buddy Press 14.1.0
    Theme Vikinger
    PHP 8.3

Viewing 25 results - 101 through 125 (of 31,071 total)
Skip to toolbar