From ffd9f9bdbf365f85c78c228407e4b697c3b21c48 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Fri, 18 Oct 2024 10:47:58 +0000 Subject: [PATCH] chore(release): 33.0.7 ##### [Version 33.0.7](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.6...v33.0.7) (2024-10-18) - Fixed an issue with Meta Groups not applying to multiple categories - Fixed an issue where a meta group was not applied to products if it was attached before adding fields --- CHANGELOG.md | 5 +++++ package.json | 2 +- readme.txt | 10 +++++++++- woocommerce-product-addon.php | 4 ++-- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1273fa5..f6a141bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +##### [Version 33.0.7](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.6...v33.0.7) (2024-10-18) + +- Fixed an issue with Meta Groups not applying to multiple categories +- Fixed an issue where a meta group was not applied to products if it was attached before adding fields + ##### [Version 33.0.6](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.5...v33.0.6) (2024-10-15) - Fixed an issue where PPOM meta fields were not functioning correctly inside a popup. diff --git a/package.json b/package.json index cd3902ee..4fe035d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "woocommerce-product-addon", - "version": "33.0.6", + "version": "33.0.7", "description": "PPOM for WooCommerce", "main": "index.js", "repository": "https://github.com/Codeinwp/woocommerce-product-addon", diff --git a/readme.txt b/readme.txt index ae66233c..f98c8dac 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, product addons Requires at least: 3.5 Tested up to: 6.6 -Stable tag: 33.0.6 +Stable tag: 33.0.7 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html Requires PHP: 7.2 @@ -251,6 +251,14 @@ PPOM is an open-source project, and we welcome contributors to be part of our vi == Changelog == +##### [Version 33.0.7](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.6...v33.0.7) (2024-10-18) + +- Fixed an issue with Meta Groups not applying to multiple categories +- Fixed an issue where a meta group was not applied to products if it was attached before adding fields + + + + ##### [Version 33.0.6](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.5...v33.0.6) (2024-10-15) - Fixed an issue where PPOM meta fields were not functioning correctly inside a popup. diff --git a/woocommerce-product-addon.php b/woocommerce-product-addon.php index 846493a7..a5291f74 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: 33.0.6 + * Version: 33.0.7 * Author: Themeisle * Text Domain: woocommerce-product-addon * Domain Path: /languages @@ -27,7 +27,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', '33.0.6' ); +define( 'PPOM_VERSION', '33.0.7' ); define( 'PPOM_DB_VERSION', '32.0.0' ); define( 'PPOM_PRODUCT_META_KEY', '_product_meta_id' ); define( 'PPOM_TABLE_META', 'nm_personalized' );