Changeset 3234701
- Timestamp:
- 02/04/2025 12:42:06 PM (14 months ago)
- Location:
- coupon-individual-use-solver-for-woocommerce/trunk
- Files:
-
- 2 edited
-
lws-coupon-individual-use-solver.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coupon-individual-use-solver-for-woocommerce/trunk/lws-coupon-individual-use-solver.php
r3114119 r3234701 6 6 * Author: Long Watch Studio 7 7 * Author URI: https://longwatchstudio.com 8 * Version: 1.1. 58 * Version: 1.1.6 9 9 * License: Copyright LongWatchStudio 2023 10 10 * Text Domain: lws-cius 11 11 * Domain Path: /languages 12 12 * WC requires at least: 7.1.0 13 * WC tested up to: 9. 013 * WC tested up to: 9.6 14 14 * 15 15 * … … 37 37 }); 38 38 39 \add_action('plugins_loaded', array($instance, 'load_plugin_textdomain')); 39 \add_action('after_setup_theme', function() { 40 \load_plugin_textdomain('lws-cius', FALSE, basename(dirname(__FILE__)) . '/languages/'); 41 }); 40 42 $instance->install(); 41 43 } … … 50 52 if( empty($version) ){ 51 53 if( !function_exists('get_plugin_data') ) require_once(ABSPATH . 'wp-admin/includes/plugin.php'); 52 $data = \get_plugin_data(__FILE__, false );54 $data = \get_plugin_data(__FILE__, false, false); 53 55 $version = (isset($data['Version']) ? $data['Version'] : '0'); 54 56 } … … 56 58 } 57 59 58 /** Load translation file */59 function load_plugin_textdomain()60 {61 load_plugin_textdomain('lws-cius', FALSE, basename(dirname(__FILE__)) . '/languages/');62 }63 64 60 private function defineConstants() 65 61 { 66 define('LWSDEV_COUPON_CONFLICTS_VERSION' , '1.1. 5');62 define('LWSDEV_COUPON_CONFLICTS_VERSION' , '1.1.6'); 67 63 define('LWSDEV_COUPON_CONFLICTS_FILE' , __FILE__); 68 64 define('LWSDEV_COUPON_CONFLICTS_DOMAIN' , 'lws-cius'); -
coupon-individual-use-solver-for-woocommerce/trunk/readme.txt
r3114119 r3234701 3 3 Tags: woocommerce, product, sale, coupon 4 4 Requires at least: 5.3 5 Tested up to: 6. 65 Tested up to: 6.7 6 6 Requires PHP: 7.0.0 7 Stable tag: 1.1. 57 Stable tag: 1.1.6 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 59 59 == Changelog == 60 60 61 = 1.1.6 = 62 * Tag - WordPress 6.7 support 63 * Tag - WooCommerce 9.6 support 64 61 65 = 1.1.5 = 62 66 * Tag - WordPress 6.6 support
Note: See TracChangeset
for help on using the changeset viewer.