Changeset 3180139
- Timestamp:
- 11/01/2024 06:24:10 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
woo-free-product-sample/trunk/woo-free-product-sample.php
r2929326 r3180139 9 9 * Plugin URI: https://wordpress.org/plugins/woo-free-product-sample 10 10 * Description: It allows customers to order a product sample in a simple way. 11 * Version: 2.3. 111 * Version: 2.3.2 12 12 * Author: AMP-MODE 13 13 * Author URI: https://amplifyplugins.com … … 18 18 * Requires PHP: 5.6 19 19 * Requires at least: 4.4 20 * Tested up to: 6. 2.220 * Tested up to: 6.6.1 21 21 * 22 22 * WC requires at least: 3.1 23 * WC tested up to: 7.7.023 * WC tested up to: 9.2.3 24 24 * License: GNU General Public License v3.0 25 25 * License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 31 31 } 32 32 33 define( 'WFPS_VERSION', '2.3. 1' );33 define( 'WFPS_VERSION', '2.3.2' ); 34 34 define( 'WFPS_MINIMUM_PHP_VERSION', '5.6.0' ); 35 35 define( 'WFPS_MINIMUM_WP_VERSION', '4.4' ); … … 46 46 47 47 include WFPS_ROOT_DIR_PATH . 'includes/woo-free-product-sample-functions.php'; 48 49 /** 50 * Add HPOS support and compability 51 * 52 * @author Archie Mercader <achiles@modeeffect.com> 53 */ 54 add_action( 'before_woocommerce_init', function () { 55 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 56 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 57 } 58 }); 48 59 49 60 /**
Note: See TracChangeset
for help on using the changeset viewer.