Changeset 2696481
- Timestamp:
- 03/19/2022 07:01:27 PM (4 years ago)
- Location:
- shop-2-api/trunk
- Files:
-
- 4 edited
-
assets/bol2api_category_mapping_scripts.js (modified) (2 diffs)
-
assets/bol2api_dashboard.js (modified) (1 diff)
-
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
r2635233 r2696481 120 120 'bol_cat_name': dropdown_changed.selectedOptions[0].innerHTML, 121 121 'wc_field_values': [wc_cat_id], 122 'mapping': {}122 'mapping': default_mapping 123 123 } 124 124 } … … 141 141 } 142 142 143 let default_mapping = { 144 "ean": { 145 "type": "Product", 146 "value": "sku" 147 }, 148 "Name": { 149 "type": "Product", 150 "value": "name" 151 }, 152 "Description": { 153 "type": "Product", 154 "value": "description" 155 }, 156 "stock.amount": { 157 "type": "Product", 158 "value": "stock_quantity" 159 }, 160 "condition.name": { 161 "type": "OwnValue", 162 "value": "NEW" 163 }, 164 "Cover Image URL": { 165 "type": "Product", 166 "value": "images|src" 167 }, 168 "fulfilment.method": { 169 "type": "OwnValue", 170 "value": "FBR" 171 }, 172 "Internal Reference": { 173 "type": "Product", 174 "value": "sku" 175 }, 176 "unknownProductTitle": { 177 "type": "Product", 178 "value": "name" 179 }, 180 "fulfilment.deliveryCode": { 181 "type": "OwnValue", 182 "value": "1-2d" 183 }, 184 "stock.managedByRetailer": { 185 "type": "OwnValue", 186 "value": "true" 187 }, 188 "pricing.bundlePrices.quantity": { 189 "type": "OwnValue", 190 "value": "1" 191 }, 192 "pricing.bundlePrices.unitPrice": { 193 "type": "Product", 194 "value": "price" 195 } 196 } 143 197 })(jQuery); -
shop-2-api/trunk/assets/bol2api_dashboard.js
r2637595 r2696481 1 1 ( function( $ ) { 2 2 $( document ).ready( function() { 3 // Default Hidden s3 // Default Hidden 4 4 $('#shop2api-enter-token').hide(); 5 5 $('#register-free-account-modal').hide(); -
shop-2-api/trunk/readme.txt
r2643034 r2696481 76 76 4) Bug Fixes 77 77 78 = 1.0.9 = 79 1) Add default values when saving a mapping for the first time. 80 78 81 == Instructions == 79 82 1) After installing Shop2Api, a new menu item will be available in your WordPress installation, you can continue and click on it and enter you token which was mailed to you. -
shop-2-api/trunk/shop-2-api.php
r2643033 r2696481 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. 87 Version: 1.0.9 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. 8');36 define ('VERSION', '1.0.9'); 37 37 38 38 // Register items in the project.
Note: See TracChangeset
for help on using the changeset viewer.