Changeset 2922987
- Timestamp:
- 06/07/2023 03:56:20 PM (3 years ago)
- Location:
- woo-free-product-sample/trunk
- Files:
-
- 3 edited
-
includes/class-woo-free-product-sample.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
woo-free-product-sample.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-free-product-sample/trunk/includes/class-woo-free-product-sample.php
r2759997 r2922987 161 161 $this->loader->add_filter( 'woocommerce_add_to_cart_validation', $plugin_public, 'wfps_set_limit_per_order', 99, 4 ); 162 162 $this->loader->add_filter( 'woocommerce_get_cart_item_from_session', $plugin_public, 'wfps_get_cart_items_from_session', 10, 2 ); 163 $this->loader->add_action( 'woocommerce_ add_order_item_meta', $plugin_public, 'wfps_save_posted_data_into_order', 10, 2 );163 $this->loader->add_action( 'woocommerce_new_order_item', $plugin_public, 'wfps_save_posted_data_into_order', 10, 2 ); 164 164 $this->loader->add_filter( 'woocommerce_locate_template', $plugin_public, 'wfps_set_locate_template', 10, 3 ); 165 165 $this->loader->add_filter( 'woocommerce_cart_item_name', $plugin_public, 'wfps_alter_item_name', 10, 3 ); -
woo-free-product-sample/trunk/readme.txt
r2893617 r2922987 7 7 WC tested up to: 7.5.1 8 8 Requires PHP: 5.6 9 Stable tag: 2. 2.99 Stable tag: 2.3.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 115 115 116 116 == Changelog == 117 #### 2.3.0 118 * Update: Replace the deprecated function - woocommerce_add_order_item_meta => woocommerce_new_order_item. 119 117 120 #### 2.2.9 118 121 * Fixed upgrade link display issue. … … 282 285 283 286 == Upgrade Notice == 284 #### 2.2.9 285 * Fixed upgrade link display issue. 286 * Fixed redirect issue after plugin activation, to remain on the plugin installer page instead of redirecting to the plugin settings page. 287 #### 2.3.0 288 * Update: Replace the deprecated function - woocommerce_add_order_item_meta => woocommerce_new_order_item. -
woo-free-product-sample/trunk/woo-free-product-sample.php
r2893617 r2922987 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. 2.911 * Version: 2.3.0 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. 1.120 * Tested up to: 6.2.2 21 21 * 22 22 * WC requires at least: 3.1 23 * WC tested up to: 7. 5.123 * WC tested up to: 7.7.0 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. 2.9' );33 define( 'WFPS_VERSION', '2.3.0' ); 34 34 define( 'WFPS_MINIMUM_PHP_VERSION', '5.6.0' ); 35 35 define( 'WFPS_MINIMUM_WP_VERSION', '4.4' );
Note: See TracChangeset
for help on using the changeset viewer.