This is a known issue and is currently under development, temporarily you can use the following function code to fix the issue. Please see the steps below:


Note: Make sure to have a complete site backup before proceeding


1. Go to Appearance > Theme Editor.

2. Under Select theme to edit, choose (BuddyBoss Child/whatever theme is active), then click Select.

3. Below Theme Files, select Theme Functions (functions.php).

4. Append the code just before the closing PHP tag “?>”:

add_action( 'login_enqueue_scripts', function(){
            // Icons.
            $mincss = buddyboss_theme_get_option( 'boss_minified_css' ) ? '.min' : '';
            // don't enqueue icons if BuddyBoss Platform 1.4.0 or higher is activated.
            if ( ! function_exists( 'buddypress' ) || ( function_exists( 'buddypress' ) && defined( 'BP_PLATFORM_VERSION' ) && version_compare( BP_PLATFORM_VERSION, '1.4.0', '<' ) ) ) {
                wp_enqueue_style( 'buddyboss-theme-icons-map', get_template_directory_uri() . '/assets/css/icons-map' . $mincss . '.css', '', buddyboss_theme()->version() );
                wp_enqueue_style( 'buddyboss-theme-icons', get_template_directory_uri() . '/assets/icons/css/bb-icons' . $mincss . '.css', '', buddyboss_theme()->version() );
            }
        }
, 20 );

5. Click Update File to save the changes.


Before the code:


After the code:


Note: Any modifications are considered as custom work already. Know more about our Support Policy here: https://www.buddyboss.com/support-policy/