Skip to content

Commit 89cff19

Browse files
committed
chore(release): 33.0.6
##### [Version 33.0.6](v33.0.5...v33.0.6) (2024-10-15) - Fixed an issue where PPOM meta fields were not functioning correctly inside a popup. - Fixed an issue where reordering options in the Select field was not working, with changes not being saved. - Fixed an issue where file previews were not visible when uploading large images, displaying a folder icon instead of the image. - Fixed an issue where all images were selected by default when the Min Image Select option was set to 1. - Fixed an issue where Image Dropdown (Image Select) fields did not appear in the conditional logic settings.
1 parent 777cbc0 commit 89cff19

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
##### [Version 33.0.6](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.5...v33.0.6) (2024-10-15)
2+
3+
- Fixed an issue where PPOM meta fields were not functioning correctly inside a popup.
4+
- Fixed an issue where reordering options in the Select field was not working, with changes not being saved.
5+
- Fixed an issue where file previews were not visible when uploading large images, displaying a folder icon instead of the image.
6+
- Fixed an issue where all images were selected by default when the Min Image Select option was set to 1.
7+
- Fixed an issue where Image Dropdown (Image Select) fields did not appear in the conditional logic settings.
8+
19
##### [Version 33.0.5](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.4...v33.0.5) (2024-10-08)
210

311
- Fixed an issue where fields in a meta group could not be reordered, and changes to the field order were not saved.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "woocommerce-product-addon",
3-
"version": "33.0.5",
3+
"version": "33.0.6",
44
"description": "PPOM for WooCommerce",
55
"main": "index.js",
66
"repository": "https://github.com/Codeinwp/woocommerce-product-addon",

readme.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: themeisle
33
Tags: woocommerce product addons, woocommerce product options, woocommerce product fields, woocommerce product, product addons
44
Requires at least: 3.5
55
Tested up to: 6.6
6-
Stable tag: 33.0.5
6+
Stable tag: 33.0.6
77
License: GPLv2
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99
Requires PHP: 7.2
@@ -251,6 +251,17 @@ PPOM is an open-source project, and we welcome contributors to be part of our vi
251251

252252
== Changelog ==
253253

254+
##### [Version 33.0.6](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.5...v33.0.6) (2024-10-15)
255+
256+
- Fixed an issue where PPOM meta fields were not functioning correctly inside a popup.
257+
- Fixed an issue where reordering options in the Select field was not working, with changes not being saved.
258+
- Fixed an issue where file previews were not visible when uploading large images, displaying a folder icon instead of the image.
259+
- Fixed an issue where all images were selected by default when the Min Image Select option was set to 1.
260+
- Fixed an issue where Image Dropdown (Image Select) fields did not appear in the conditional logic settings.
261+
262+
263+
264+
254265
##### [Version 33.0.5](https://github.com/Codeinwp/woocommerce-product-addon/compare/v33.0.4...v33.0.5) (2024-10-08)
255266

256267
- Fixed an issue where fields in a meta group could not be reordered, and changes to the field order were not saved.

woocommerce-product-addon.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: PPOM for WooCommerce
44
* Plugin URI: https://themeisle.com/plugins/ppom-pro/
55
* Description: PPOM (Personalized Product Meta Manager) plugin allow WooCommerce Store Admin to create unlimited input fields and files to attach with Product Pages.
6-
* Version: 33.0.5
6+
* Version: 33.0.6
77
* Author: Themeisle
88
* Text Domain: woocommerce-product-addon
99
* Domain Path: /languages
@@ -27,7 +27,7 @@
2727
define( 'PPOM_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
2828
define( 'PPOM_WP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __DIR__ ) ) );
2929
define( 'PPOM_BASENAME', basename( PPOM_WP_PLUGIN_DIR ) );
30-
define( 'PPOM_VERSION', '33.0.5' );
30+
define( 'PPOM_VERSION', '33.0.6' );
3131
define( 'PPOM_DB_VERSION', '32.0.0' );
3232
define( 'PPOM_PRODUCT_META_KEY', '_product_meta_id' );
3333
define( 'PPOM_TABLE_META', 'nm_personalized' );

0 commit comments

Comments
 (0)