Changeset 2982472
- Timestamp:
- 10/23/2023 08:38:27 AM (2 years ago)
- Location:
- shop-2-api/trunk
- Files:
-
- 3 edited
-
assets/bol2api_category_mapping_scripts.js (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
shop-2-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shop-2-api/trunk/assets/bol2api_category_mapping_scripts.js
r2982442 r2982472 116 116 // If the previous one was undefined then just add it to the wc_field_values 117 117 if (typeof (saved_bol_category_data[new_bol_cat_id]['wc_field_values']) !== "undefined") { 118 if (prev_bol_cat_id !== "" && prev_bol_cat_id !== 'undefined' ) {118 if (prev_bol_cat_id !== "" && prev_bol_cat_id !== 'undefined' && prev_bol_cat_id !== new_bol_cat_id) { 119 119 if ('wc_field_values' in saved_bol_category_data[prev_bol_cat_id]) { 120 120 saved_bol_category_data[prev_bol_cat_id]['wc_field_values'].remove(wc_cat_id); … … 146 146 if (Object.keys(saved_bol_category_data).includes(prev_bol_cat_id)) { 147 147 if (typeof (saved_bol_category_data[prev_bol_cat_id]['wc_field_values']) !== "undefined") { 148 saved_bol_category_data[prev_bol_cat_id]['wc_field_values'].remove(wc_cat_id); 148 if (prev_bol_cat_id !== new_bol_cat_id) { 149 saved_bol_category_data[prev_bol_cat_id]['wc_field_values'].remove(wc_cat_id); 150 } 149 151 } 150 152 } -
shop-2-api/trunk/readme.txt
r2982442 r2982472 3 3 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 4 4 Tags: WooCommerce, Bol 5 Stable Tag: 1.0.28. 15 Stable Tag: 1.0.28.2 6 6 Requires at least: 5.0 7 7 Requires PHP: 7.2 -
shop-2-api/trunk/shop-2-api.php
r2982442 r2982472 5 5 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 6 6 Description: The plugin Shop2Api will sync products between e-Commerce platforms. The current supported e-Commerce platforms are WooCommerce to Bol.com, and we are working on Amazon, Shopify and others. We added a koopblok service so that you can check if you lower your price can you get koopblok. 7 Version: 1.0.28. 17 Version: 1.0.28.2 8 8 Requires at least: 5.0 9 9 Requires PHP: 7.2 … … 34 34 define('SHOP2API_PLUGIN_URL', plugin_dir_url( __FILE__ )); 35 35 define('SHOP2API_PLUGIN', plugin_basename( __FILE__ )); 36 define ('VERSION', '1.0.28. 1');36 define ('VERSION', '1.0.28.2'); 37 37 38 38 // Register items in the project.
Note: See TracChangeset
for help on using the changeset viewer.