Changeset 2871058
- Timestamp:
- 02/25/2023 07:26:16 PM (3 years ago)
- Location:
- shop-2-api/trunk
- Files:
-
- 3 edited
-
includes/Base/EnqueueWC.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
shop-2-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shop-2-api/trunk/includes/Base/EnqueueWC.php
r2868951 r2871058 25 25 } 26 26 27 public function register() 27 public function register(): void 28 28 { 29 29 // Actions … … 181 181 ); 182 182 echo wp_kses('</div>', $this->allowed_html); 183 184 // Add EAN Number 185 $shop2api_ean_number = get_post_meta( $post->ID, 'shop2api_ean_number', true); 186 woocommerce_wp_text_input( 187 array( 188 'id' => 'shop2api_ean_number', 189 'wrapper_class' => 'cfwc-custom-field', 190 'label' => __('Bol EAN Number', 'woocommerce'), 191 //'description' => __( 'An optional EAN Number that you can map on Shop-2-api or use for orders.', 'woocommerce' ), 192 'value' => $shop2api_ean_number 193 ) 194 ); 195 // Add COMBI EAN Number 196 $shop2api_combi_ean_number = get_post_meta( $post->ID, 'shop2api_combi_ean_number', true); 197 woocommerce_wp_text_input( 198 array( 199 'id' => 'shop2api_combi_ean_number', 200 'wrapper_class' => 'cfwc-custom-field', 201 'label' => __('Combideal EAN Number', 'woocommerce'), 202 //'description' => __( 'An optional EAN Number that you can map on Shop-2-api or use for orders.', 'woocommerce' ), 203 'value' => $shop2api_combi_ean_number 204 ) 205 ); 183 206 } 184 207 -
shop-2-api/trunk/readme.txt
r2868951 r2871058 3 3 Plugin URI: https://wordpress.org/plugins/shop-2-api/ 4 4 Tags: WooCommerce, Bol 5 Stable Tag: 1.0. 185 Stable Tag: 1.0.22 6 6 Requires at least: 5.0 7 7 Requires PHP: 7.2 … … 128 128 1) Implementation of Combo Deals 129 129 130 = 1.0.22 = 131 1) Fix bug where the EAN numbers gets overwritten on quick-save. 132 130 133 == Instructions == 131 134 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
r2868951 r2871058 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.2 17 Version: 1.0.22 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.2 1');36 define ('VERSION', '1.0.22'); 37 37 38 38 // Register items in the project.
Note: See TracChangeset
for help on using the changeset viewer.