diff --git a/CHANGELOG.md b/CHANGELOG.md index c22256f..c3b6c2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +##### [Version 32.0.27](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.26...v32.0.27) (2024-08-13) + +- Fixed PHP fatal error that was occurring when editing imported group of fields +- Fixed PHP warnings on the changelog page +- Fixed console error that was blocking the editing/updating of the image in the popup +- Fixed conditional loading +- Fixed repeater field issue with multiple groups +- Implemented a user satisfaction survey + ##### [Version 32.0.26](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.25...v32.0.26) (2024-07-29) - Fixed issue with default settings on collapse field and when using multiple collapse fields diff --git a/package.json b/package.json index f8dbd43..56062bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "woocommerce-product-addon", - "version": "32.0.26", + "version": "32.0.27", "description": "PPOM for WooCommerce", "main": "index.js", "repository": "https://github.com/Codeinwp/woocommerce-product-addon", diff --git a/readme.txt b/readme.txt index 40dcb65..ace1008 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: themeisle Tags: woocommerce product addons, woocommerce product options, woocommerce product fields, woocommerce product, woocommerce product addon Requires at least: 3.5 Tested up to: 6.6 -Stable tag: 32.0.26 +Stable tag: 32.0.27 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html Requires PHP: 7.2 @@ -122,6 +122,18 @@ If you feels that PPOM Free or PPOM PRO versions are not enough for your needs, == Changelog == +##### [Version 32.0.27](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.26...v32.0.27) (2024-08-13) + +- Fixed PHP fatal error that was occurring when editing imported group of fields +- Fixed PHP warnings on the changelog page +- Fixed console error that was blocking the editing/updating of the image in the popup +- Fixed conditional loading +- Fixed repeater field issue with multiple groups +- Implemented a user satisfaction survey + + + + ##### [Version 32.0.26](https://github.com/Codeinwp/woocommerce-product-addon/compare/v32.0.25...v32.0.26) (2024-07-29) - Fixed issue with default settings on collapse field and when using multiple collapse fields diff --git a/woocommerce-product-addon.php b/woocommerce-product-addon.php index 4d4a58a..93ec2fc 100644 --- a/woocommerce-product-addon.php +++ b/woocommerce-product-addon.php @@ -3,7 +3,7 @@ * Plugin Name: PPOM for WooCommerce * Plugin URI: https://themeisle.com/plugins/ppom-pro/ * Description: PPOM (Personalized Product Meta Manager) plugin allow WooCommerce Store Admin to create unlimited input fields and files to attach with Product Pages. - * Version: 32.0.26 + * Version: 32.0.27 * Author: Themeisle * Text Domain: woocommerce-product-addon * Domain Path: /languages @@ -26,7 +26,7 @@ define( 'PPOM_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) ); define( 'PPOM_WP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __DIR__ ) ) ); define( 'PPOM_BASENAME', basename( PPOM_WP_PLUGIN_DIR ) ); -define( 'PPOM_VERSION', '32.0.26' ); +define( 'PPOM_VERSION', '32.0.27' ); define( 'PPOM_DB_VERSION', '30.1.0' ); define( 'PPOM_PRODUCT_META_KEY', '_product_meta_id' ); define( 'PPOM_TABLE_META', 'nm_personalized' );