Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 1 through 25 (of 32,562 total)
  • Author
    Search Results
  • #338050
    kenjikato
    Participant

    If anyone comes to this post looking for help on using Divi with BuddyPress here’s the first thing that you need to do.

    1. Log in to your WordPress site.
    2. From the WordPress sidebar select “Divi > Theme Options”.
    3. Go to the “General” tab (which should be selected by default) found below the Divi Theme Options text.
    4. Click on the “Performance” sub-tab.
    5. Disable “Dynamic CSS”.

    This should fix the header and footer formatting issues that most people see when using Divi with BuddyPress.

    emaralive
    Moderator

    Your question is more in line as a support question for the Buddyx theme folks. If you haven’t already tried their support forum for the Buddyx theme.

    Furthermore, the first plugin you listed (WP Google Search) provides a search widget that you can add to any of the available widget areas provided by the Buddyx theme, the other plugins you listed may provide a widget as well. This approach might be easier than trying to add relevant code, e.g. a shortcode (if available) to a header file.

    elearnnow
    Participant

    Hi BuddyBoss community,

    I’m having trouble activating BuddyBoss components programmatically. I’ve tried several approaches, but the components aren’t being enabled. Here’s what I’ve attempted:

    Using bp_update_option()
    Direct database updates
    Different hooks (init, after_setup_theme)
    Current Behavior:

    No components activate
    No error messages in logs
    Tried both single site and multisite
    What I Need:

    A reliable way to activate components (Groups, Activity, Messages, etc.)
    Best practices for programmatic component management
    Any known issues with automatic component activation
    <?php
    /**
    * BuddyBoss Components Activator
    * Add this to your theme’s functions.php or as a must-use plugin
    */

    // Make sure we don’t expose any info if called directly
    if (!defined(‘ABSPATH’)) {
    exit;
    }

    // Hook into after_setup_theme to ensure BuddyBoss is loaded
    add_action(‘after_setup_theme’, ‘activate_buddyboss_components_on_init’, 9999);

    function activate_buddyboss_components_on_init() {
    // Check if BuddyBoss is active
    if (!function_exists(‘buddypress’)) {
    return;
    }

    // Get current active components
    $active_components = get_option(‘bp-active-components’, array());

    // Components we want to activate
    $components = array(
    ‘groups’ => 1,
    ‘activity’ => 1,
    ‘messages’ => 1,
    ‘notifications’ => 1,
    ‘friends’ => 1,
    ‘settings’ => 1,
    ‘xprofile’ => 1,
    ‘members’ => 1
    );

    // Merge with existing components
    $new_components = array_merge($active_components, $components);

    // Only update if there are changes
    if ($active_components != $new_components) {
    update_option(‘bp-active-components’, $new_components);

    // Clear BuddyBoss component cache
    if (function_exists(‘bp_core_reset_incrementor’)) {
    bp_core_reset_incrementor(‘bp_active_components’);
    }

    // Flush rewrite rules on next load
    set_transient(‘bb_flush_rewrite_rules’, ‘1’, 60);
    }
    }

    // Handle rewrite rules flush
    add_action(‘init’, ‘bb_maybe_flush_rewrite_rules’, 9999);
    function bb_maybe_flush_rewrite_rules() {
    if (get_transient(‘bb_flush_rewrite_rules’)) {
    delete_transient(‘bb_flush_rewrite_rules’);
    flush_rewrite_rules(false);
    }
    }

    #337990
    locker17
    Participant

    I meant the link because there is no button.
    To risca, it depends which template you use, default or novoue. If it is novoue pick up the template file for the emails, search for the unsubscribe link and delete or comment it out. Then save this file in a directory called buddypress with the same folder structure in your child theme directory.

    emaralive
    Moderator

    The login page shown in the 1st screenshot is due to having the Community Visibility option set to “Members Only” (Private Community) within BuddyPress options. This option was introduced in version 12.0.0 and there appears to be some situations in which the default WordPress login page appears as opposed to the intended “Private Community” login page. Nevertheless, the “Private Community” login page can be disabled by utilizing the bp_view_no_access_redirect_to_login_screen filter hook and you will want your callback function to return a value of true. The following link is the line of code where the filter hook resides for v14.3.4:

    bp_view_no_access_redirect_to_login_screen

    The registration page shown in the 2nd screenshot is actually the BuddyPress registration page. Why it looks different is because the Buddyx theme is utilizing CSS rules to alter/change the appearance. You should contact Wbcom Designs support regarding the restoration of the default appearance.

    #337971
    emaralive
    Moderator

    The snippet does what it is coded to do, therefore, either the snippet is not being invoked or there is something else (possibly a plugin, theme or other custom code) that is counteracting the snippet.

    I’m not familiar with the “username only” plugin, is this plugin available via the WordPress plugins directory? I’m asking because this plugin or some other external factor (a different plugin or theme) might be disrupting the normal flow of events.

    The snippet relies on the bp_get_title_parts filter hook which relies on the bp_modify_page_title() function to be invoked by the wp_title filter hook.

    You can try hooking the snippet to the wp_title filter hook to see if that makes any difference, i.e., change:

    From:

    
    add_filter( 'bp_get_title_parts', 'yz_change_buddypress_browser_tab_title', 999 );
    

    To:

    
    add_filter( 'wp_title', 'yz_change_buddypress_browser_tab_title', 999 );
    
    #337956
    emaralive
    Moderator

    From what I can tell, the snippet replaces the text portion of what BuddyPress would normally add to the meta “title” with the text “XXXX” (without the quotes). For example on a members profile view page (site.url/members/username/profile):

    Display name of user: test
    Website name: Apple

    Without snippet: Profile | test | Apple

    With snippet: XXXX | Apple

    The snippet (copy & paste) was checked for use in the bp-custom.php file and the functions.php file of a child theme. Perhaps, you could elaborate a bit more as to the steps you took to implement the snippet and what you expected the result to be.

    #337947
    locker17
    Participant

    Delete it in the email template of your theme and upload it to buddypress folder in your theme directory to be update safe.

    #337935
    emaralive
    Moderator

    Apparently, this is the current behavior of the bp_rewrites_get_url() function, i.e., the missing trailing slash, when the permalink structure is missing a trailing slash. Hence, a permalink of /%postname%/.html will result in a URL with a missing trailing slash, e.g.:

    
    site.url/members/<user_name>
    

    This causes a 404 error when bbPress tries to concatenate the URLs for the following:

    • Replies Created
    • Engagements
    • Favorites
    • Subscriptions

    What’s peculiar is that “Topics Started” isn’t affected because, for bbPress, all member area URLs (navigation links) are based on either the bp_displayed_user_domain() or the bp_loggedin_user_domain() functions and both of these functions have the bp_rewrites_get_url() function in the chain for return.

    Regardless, this appears to be problematic due to some 3rd party themes and plugins that make use of various other BP functions that have bp_rewrites_get_url() function in the chain for return.

    #337787
    authore
    Participant

    If all BuddyPress links are redirecting to the homepage, it’s often due to permalink issues or missing BuddyPress pages. Try re-saving your permalink settings under Settings > Permalinks, and ensure all required BuddyPress pages (like Members, Activity) are correctly assigned under Settings > BuddyPress > Pages. Also, check for theme or plugin conflicts.

    #337732
    emaralive
    Moderator

    Thanks for the info regarding your theme. The URL structure appears to be a bit odd, your screenshot reveals:

    
    http://localhost/graymatter/index.php/register
    

    Where is the “index.php” coming from? Given that rewrite rules and permalinks are working correctly, the expectation would be that the URL would be:

    
    http://localhost/graymatter/register
    

    When you click on the “Sample Page”, does it show the contents of the “Sample Page”? And what does the URL structure for that page show?

    #337731
    tofigh
    Participant

    I use twenty-twenty four theme
    And permalink structure is set to custom structure

    #337706
    emaralive
    Moderator

    What WordPress theme are you using? Also, when you are in the wp-admin area, go to Settings > Permalinks and make sure the “Permalink structure” is not set to “Plain”.

    #337701
    emaralive
    Moderator

    What might help is that you include a screenshot of the menus and what a page looks like with no content. For example, the following is a screenshot of a page (with content) when the “Activity” menu item is selected:

    Additionally, what WordPress theme are you using?

    #337665
    roracle
    Participant

    I used the /avatar block in my header, as I want users to be able to access it from anywhere.

    The avatar shows up in the editor and on any page that is NOT BuddyPress. If the page IS a BuddyPress page, the avatar simply doesn’t load at all.

    The header is a row with the images used to link the users to different parts of the site. They are equally spaced. On normal pages: 4 items, one being the avatar. On BuddyPress pages: 3 items, avatar suddenly decides to go Amelia Earhart on me.

    What am I doing wrong, and how this be fixed?

    Using Twenty Twenty-five theme and FSE with Gutenberg. Fresh install of WordPress, latest version as of today, as well as a fresh install of BuddyPress.

    Thank you in advance.

    #337508
    flamuren
    Participant

    Hi,

    I use the Reign theme for buddypress and bbpress.

    I have classic widget plugin installed.

    I have some of the buddypress widgets, but not all of them. Also there seems to be an issue that widgets has dissapeared.

    Do widgets dissappear when I press “delete” in the widget area on the right where I edit specific widget areas of the website? I thought i only removed them from that widget area. Very confusing.

    If this is the case, how would I get them back again?

    These widgets is the ones i refer too: https://codex.buddypress.org/themes/buddypress-widgets/

    Best regards,

    Flamur

    smelendez
    Participant

    After extensive troubleshooting by my support and the support from the technical team of the WordPress theme I use, we both came to the conclusion that the issue seems to happen upon activating the Elementor Pro plugin. We have both been able to replicate the issue on a default WordPress theme such as the Twenty Twenty One theme, so is it possible that it could be an incompatibility between BuddyPress and Elementor Pro or vice versa?

    We managed to replicate the issue in a clean environment, no custom code, no additional plugins, just Elementor, Elementor Pro and BuddyPress.

    #337481
    lillivalentino2025
    Participant

    I would like to instal Buddy Press, however it is stated that it is not tested with my current WP version. Details follow. What would you advise, please?
    Current WP version: 6.8.1
    Theme:Mero Blog by Kantipur Themes
    Thanks a lot for any help I can get

    smelendez
    Participant

    Hi, thank you for your reply. Yes, it is a strange issue and I understand that it must be some incompatibility or something similar with the new versions. Because as I show in the video I attached in my previous reply, I have deactivated all my custom scripts and I was activating all the plugins one by one (after having previously deactivated all of them) until I got to Elementor Pro and detected the issue again. In my plugin list (you can see it in the video) I do not have the BP classic plugin. The BP related plugins I have are:

    – BuddyPress v14.3.4
    – bbPress v2.6.13
    – BP Profile Search v5.8.3
    – BuddyPress Xprofile Custom Field Types v1.2.7
    – BuddyPress Profile Completion v1.1.0
    – Block, Suspend, Report for BuddyPress v3.6.4
    – BuddyPress Follow v1.3-alpha
    – Buddy Notification Bell v1.0.4.

    During my tests, I deactivated all of these except for BuddyPress, BuddyPress Xprofile Custom Field Types, BP Profile Search and bbPress which are the plugins that came with the theme I use in WordPress.

    smelendez
    Participant

    I am currently using:

    – WordPress v6.8.1
    – Theme: Sweetdate by SeventhQueen v3.9.2
    – BuddyPress v14.3.4
    – Elementor v3.29.2
    – Elementor Pro v3.29.2

    I have noticed a strange behavior occurring on BuddyPress group and profile pages. Specifically, the issue is:

    When visiting a BuddyPress group, sometimes:

    – If the user is not a member, they are automatically added to the group without clicking the join button.

    – If the user is already a member, they are automatically removed from the group without clicking the leave button.

    When visiting a user profile, sometimes:

    – If the visitor is not a friend, a friend request is automatically sent.

    – If they are already friends, the friendship is automatically cancelled.

    It seems like if the “Join Group”, “Leave Group”, “Add Friend” and “Cancel Friendship” buttons are being triggered automatically upon loading the corresponding pages. This does not happen every time, so it has been difficult for me to replicate it to show it to you, but it occurs frequently enough to negatively affect the user experience.

    In an effort to identify the cause, I have done the following tests:
    – Deactivated all custom scripts.
    – Deactivated all plugins except those required for WordPress and the theme to function correctly.
    – Cleared and purged all caches.

    While running these tests, the issue did not occur. However, as I began reactivating plugins one by one (still with my custom scripts deactivated), I found that the issue reappears when Elementor Pro is activated. This leads me to believe the problem may come from a conflict between Elementor Pro and BuddyPress, the theme, or WordPress itself.

    I am sharing a video where I was able to replicate the issue: https://drive.google.com/file/d/1uuLIc-hGQHHq5BGY3b5M3pklMMEQqKyx/view?usp=sharing

    Do you have any idea what could be causing this behaviour, and if it is an incompatibility with BuddyPress?

    Thank you all in advance.

    urbanscom
    Participant

    Hi and first of all thanks for your plugin and the support
    I m using Tutor LMS pro on a fresh new wordpress installation.
    I decided to install the Buddypress addon but i hav a problem regarding the template

    WordPress version 6.8.1
    Thème actif : Sofia (version 1.0)
    Extension actuelle : BuddyPress (version 14.3.4)
    PHP version 8.1.32

    Une erreur de type E_ERROR a été causée dans la ligne 725 du fichier /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php. Message d’erreur : Uncaught TypeError: urldecode(): Argument #1 ($string) must be of type string, array given in /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php:725
    Stack trace:
    #0 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php(725): urldecode(Array)
    #1 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/class-wp-hook.php(324): bp_legacy_theme_ajax_querystring('', 'activity')
    #2 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/plugin.php(205): WP_Hook->apply_filters('', Array)
    #3 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-content/plugins/buddypress/bp-core/bp-core-template.php(1157): apply_filters('bp_ajax_queryst...', '', 'activity')
    #4 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-content/plugins/buddypress/bp-activity/bp-activity-filters.php(560): bp_ajax_querystring('activity')
    #5 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/class-wp-hook.php(326): bp_activity_heartbeat_last_recorded(Array, Array)
    #6 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/plugin.php(205): WP_Hook->apply_filters(Array, Array)
    #7 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-admin/includes/ajax-actions.php(3503): apply_filters('heartbeat_recei...', Array, Array, 'front')
    #8 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/class-wp-hook.php(324): wp_ajax_heartbeat('')
    #9 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array)
    #10 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
    #11 /home/clients/698fbd2a837b717e3115da6da7d93852/sites/renaissance.stellalapsy.fr/wp-admin/admin-ajax.php(192): do_action('wp_ajax_heartbe...')
    #12 {main}
      thrown
    #337389
    rmgnexus
    Participant

    Hello, i installed latest version of wordpres, and i am using bray games theme, from my arcade plugin bundle. unfortunately moment i install buddy press, whole wordpress crash, i try deactivate all plugins, same thing happened, then i try install it on fresh wordpress instalation to check if there is any server problems, and buddy press was installed without any problem on mu server host. in that time i used default wordpress theme. So i come to conclusion bray games theme is outdated. They claim they made buddy press compatibility but that was 2019. six years is long time, and i dont know what changed from that time. next i try install bp basic plugin,but after instaling it and trying to instal bp. it crash my website again. so now i am stuck, i try contact developer but there was no answer from him.
    can anyone help me?

    TKServer
    Participant

    Circling back on this. Thanks for the response @mike80222.

    I still have this issue. When I send a message to a single user, another user is added to the conversation thread. Since this is a production site, it is hard for me to “disable all plugins and themes” to test! I’ve disabled a few so far but still is an issue. I’ll keep trying the rest of the plugs if I can.

    flamuren
    Participant

    Hi,

    I love buddypress and wpjm combo. Its free and helps people get jobs, which is my private project.

    However I am not so tech savy and not any real coding.

    My question is if its possible, within reason, to add two choices on the member page, to filter out two user classes/types (wpjm candidates and employers).

    Today I have active members and “my friends” as tabs and also a search member field under that. I would like to add candidates and employers, to filter out those users. Mainly employers – since it woud be nice for candidates to reach out if it seems good match.

    I guess find the teamplate for members, add it to my child theme and ad buttons, and then connect the buttons with a filter option in the child theme function file?

    Best regards,

    Flamur

    webstudiolvmm
    Participant

    I am using version: 6.8.1 and BuddyPress Version 14.3.4
    I develop an dating website and created a register form, but if I add field to upload image is not uploaded and the page get issue like that
    https://prnt.sc/bALFPL871QJU

    Support from theme redirect to you guys

    Thanks

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