Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 101 through 125 (of 32,562 total)
  • Author
    Search Results
  • #335605
    Philippe Roussel
    Participant

    Hi,

    WordPress version: 6.7
    BuddyPress version: 14.2.1
    https://onehomeplanet.com
    The issue still happens with Twenty Twenty-Five theme

    Though BP says that changes are saved, they are only saved under BP Edit tab and in WordPress user profile, but not under BP View tab (which is the content visitors will see…).

    Thanks for your help,

    Philippe

    Upen Singh
    Participant

    Hi
    Verify BuddyPress Compatibility with Your Theme or try to other theme Like BuddyX Free

    #335602
    Upen Singh
    Participant

    Hi kstojchev125,
    BuddyX is an ideal theme for community and membership websites. It provides a solution to all kinds of communities.

    BuddyX

    #335601
    Upen Singh
    Participant

    Hi,
    This plugin will add an extended feature to BuddyPress. It will use Shortcode for Listing Activity Streams, Members directory, and Groups directory on any post/page within the website.

    Wbcom Designs – Shortcodes & Elementor Widgets For BuddyPress

    Try FREE BuddyPress Theme: BuddyX – Offers unique layouts with clean code and easy-to-customize options, giving you a whole new way to visualize BuddyPress.

    BuddyX

    #335600
    kaseroskabrones
    Participant

    Hi! I want to customize how my buddypress looks like, but I can’t find any plugin. The only one that is available is the buddybuilder for elementor.

    Is there any plugin for spectra or astra themes? Thank you.

    #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

    #335444
    windhillruss
    Participant

    Hi, looking for some pointers to resolve an issue that is not Theme specific (tested on two) and not sure when the issue surfaced. Using WP 6.6.2 BP 14.2.1 and rtMedia 4.6.21 When the Media tab in Groups is clicked the sub-menu items; ‘All’, ‘Albums’, ‘Photos’, ‘Video’ and ‘Music’ all point to an http url eg http://media/* and not one that includes the website domain and group name! Something must be corrupted as even with all other plugins deactivated the issue remains. The authors of the two pro themes say they don’t have an issue. Can anyone provide some assistance as to where I should look to resolve this? Thanks.

    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?

    #335370
    José Manuel
    Participant

    Hi friends
    I don’t know if this happens to you
    I have Buddy Press and rtmedia both installed in the latest version
    When I try to access any group, the screen is foggy.
    I have the Prespa theme installed
    I have tried to fix it using custom CSS but it is impossible.

    You can see the result of this effect on this page:
    https://alfeizar.net/groups/revit-iniciacion/media/

    Can you help me? Since the groups page is very important to me.
    Thanks in advance and best regards

    #335331
    richardrcook2
    Participant

    Hello. I’m using Buddypress 14.1.0, WordPress 6.6.2. My site is romancingrarehearts.com
    And I’m using the 2024 WP theme.

    After using the 2015 WordPress theme for years, BuddyPress no longer worked, so I had to change the theme. The member account delete button was visible on the 2015 theme but not on the 2024 theme. In the Buddypress settings under options, I ticked the box that says Allow registered members to delete their own accounts, but to no avail. Can anyone tell me how I can fix this problem, please? Thanks!

    #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

    #335324
    WPabmm
    Participant

    When a users logs in they currently land in my homepage.

    How can I have them redirectee to the BuddyPress Groups?

    I am using the latest WordPress and BuddyPress versions, legacy theme.

    Theme ised GeneratePress

    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.

Viewing 25 results - 101 through 125 (of 32,562 total)
Skip to toolbar