Changeset 3240547
- Timestamp:
- 02/14/2025 10:27:07 AM (14 months ago)
- Location:
- multi-woo-manager/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/integrations/class-multi-woo-manager-acf.php (modified) (1 diff)
-
multi-woo-manager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multi-woo-manager/trunk/README.txt
r3236762 r3240547 6 6 Tested up to: 6.7.1 7 7 Requires PHP: 8.0 8 Stable tag: 1.1. 58 Stable tag: 1.1.6 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 57 57 == Changelog == 58 58 59 = 1.1.6 = 60 * Fixed a recursion bug where prefixes were lost in nested ACF group fields. 61 59 62 = 1.1.5 = 60 -Initial release.61 - Added initial custom REST API endpoints for required for improving efficiency of product management.62 -Added admin top bar button for quick access to the MultiWooManager platform.63 * Initial release. 64 * Added initial custom REST API endpoints to improve product management efficiency. 65 * Added admin top bar button for quick access to the MultiWooManager platform. 63 66 64 67 == Upgrade Notice == 65 68 69 = 1.1.6 = 70 * Recommended update to fix field prefix recursion for nested group fields. 71 66 72 = 1.1.5 = 67 -Initial release. No previous versions to upgrade.73 * Initial release. No previous versions to upgrade. 68 74 69 75 == License == -
multi-woo-manager/trunk/admin/integrations/class-multi-woo-manager-acf.php
r3236761 r3240547 100 100 // recursively fetch its subfields. 101 101 if (in_array($type, ['group', 'repeater', 'flexible_content', 'tab'])) { 102 $prefix .= $key.'_'; 102 $oldPrefix = $prefix; // remember 103 $prefix .= $key.'_'; // extend 103 104 $childFields = self::buildFieldTree($field->ID, $prefix); 104 105 $fieldArray['sub_fields'] = $childFields; 105 $prefix = '';106 $prefix = $oldPrefix; // restore 106 107 } else { 107 108 $fieldArray['sub_fields'] = []; -
multi-woo-manager/trunk/multi-woo-manager.php
r3236761 r3240547 18 18 * Plugin URI: https://multiwoomanager.com 19 19 * Description: WooCommerce products management, the easy way. Plugin extends WooCommerce REST API in order to provide optimized API routes for product management. 20 * Version: 1.1. 520 * Version: 1.1.6 21 21 * Author: MultiWooManager 22 22 * Author URI: https://multiwoomanager.com/ … … 32 32 } 33 33 34 define( 'MULTI_WOO_MANAGER_VERSION', '1.1. 5' );34 define( 'MULTI_WOO_MANAGER_VERSION', '1.1.6' ); 35 35 36 36 /**
Note: See TracChangeset
for help on using the changeset viewer.