Changeset 2464622
- Timestamp:
- 01/29/2021 02:23:35 AM (4 years ago)
- Location:
- wc4bp
- Files:
-
- 377 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
wc4bp/trunk/class/wc4bp-manager.php
r2458299 r2464622 211 211 $theme = wp_get_theme(); 212 212 // 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; 215 216 } 216 217 -
wc4bp/trunk/readme.txt
r2458299 r2464622 4 4 Requires at least: 4.9 5 5 Tested up to: 5.6 6 Stable tag: 3.3.1 26 Stable tag: 3.3.13 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 114 114 115 115 == 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 116 119 = 3.3.12 - 18 Jan 2021 = 117 120 * Update the plugin to fix a release script error causing output php code into the administration. -
wc4bp/trunk/wc4bp-basic-integration.php
r2458299 r2464622 10 10 * Author: ThemeKraft 11 11 * Author URI: https://themekraft.com/products/woocommerce-buddypress-integration/ 12 * Version: 3.3.1 212 * Version: 3.3.13 13 13 * Licence: GPLv3 14 14 * Text Domain: wc4bp … … 48 48 * The plugin version 49 49 */ 50 const VERSION = '3.3.1 2' ;50 const VERSION = '3.3.13' ; 51 51 /** 52 52 * Minimum required WP version
Note: See TracChangeset
for help on using the changeset viewer.