Plugin Directory

Changeset 2464622


Ignore:
Timestamp:
01/29/2021 02:23:35 AM (4 years ago)
Author:
gfirem
Message:

Release 3.3.13

Location:
wc4bp
Files:
377 added
3 edited

Legend:

Unmodified
Added
Removed
  • wc4bp/trunk/class/wc4bp-manager.php

    r2458299 r2464622  
    211211        $theme = wp_get_theme();
    212212        // gets the current theme
    213         //todo check if this validation not run into a race condition with the function `bp_is_current_component`
    214         return ('BuddyBoss Theme' === $theme->name || 'BuddyBoss Theme' === $theme->parent_theme) && function_exists( 'bp_is_current_component' );
     213        $check_bb_theme = 'BuddyBoss Theme' === $theme->name || 'BuddyBoss Theme' === $theme->parent_theme;
     214        $check_bb_plugin = in_array( 'buddyboss-platform/bp-loader.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
     215        return $check_bb_theme && $check_bb_plugin;
    215216    }
    216217   
  • wc4bp/trunk/readme.txt

    r2458299 r2464622  
    44Requires at least: 4.9
    55Tested up to: 5.6
    6 Stable tag: 3.3.12
     6Stable tag: 3.3.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114
    115115== Changelog ==
     116= 3.3.13 28 - Jan 2021 =
     117* Fixed race condition on the method is_buddyboss_theme_active. This issue was affecting BuddyBoss users.
     118
    116119= 3.3.12 - 18 Jan 2021 =
    117120* Update the plugin to fix a release script error causing output php code into the administration.
  • wc4bp/trunk/wc4bp-basic-integration.php

    r2458299 r2464622  
    1010 * Author: ThemeKraft
    1111 * Author URI: https://themekraft.com/products/woocommerce-buddypress-integration/
    12  * Version: 3.3.12
     12 * Version: 3.3.13
    1313 * Licence: GPLv3
    1414 * Text Domain: wc4bp
     
    4848         * The plugin version
    4949         */
    50         const  VERSION = '3.3.12' ;
     50        const  VERSION = '3.3.13' ;
    5151        /**
    5252         * Minimum required WP version
Note: See TracChangeset for help on using the changeset viewer.