Changeset 1902619
- Timestamp:
- 07/02/2018 12:40:02 PM (8 years ago)
- Location:
- woo-variations-select2/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
woo-variations-select2.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woo-variations-select2/trunk/readme.txt
r1859624 r1902619 3 3 Tags: woocommerce, variations, select2 4 4 Requires at least: 4.6 5 Tested up to: 4.9. 56 Stable tag: 1. 0.25 Tested up to: 4.9.6 6 Stable tag: 1.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 24 24 25 25 == Changelog == 26 ### 1.1 27 28 * Added support for multisite. 29 26 30 ### 1.0.2 27 31 -
woo-variations-select2/trunk/woo-variations-select2.php
r1859624 r1902619 4 4 Description: A simple plugin that enables Select2 for WooCommerce variations select boxes 5 5 Author: Sti3bas 6 Version: 1. 0.26 Version: 1.1 7 7 Author URI: https://github.com/sti3bas 8 8 */ 9 10 include_once(ABSPATH . 'wp-admin/includes/plugin.php'); 9 11 10 12 /** 11 13 * Check if WooCommerce is active 12 14 **/ 13 if (! i n_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {15 if (! is_plugin_active('woocommerce/woocommerce.php') && ! is_plugin_active_for_network('woocommerce/woocommerce.php')) { 14 16 add_action('admin_notices', 'woovs2_woocommerce_inactive_notice'); 15 17 return;
Note: See TracChangeset
for help on using the changeset viewer.