Changeset 3208980
- Timestamp:
- 12/17/2024 09:08:27 AM (15 months ago)
- Location:
- extendago-wp-connection/trunk
- Files:
-
- 4 edited
-
extendago-wp-connection.php (modified) (1 diff)
-
includes/cronjob/class-extendago-cronjob-functions.php (modified) (2 diffs)
-
includes/woocommerce/class-extendago-woocommerce-functions.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
extendago-wp-connection/trunk/extendago-wp-connection.php
r3208968 r3208980 2 2 /* 3 3 Plugin Name: Extendago WP Connection 4 Plugin URI: http ://www.arture.nl/extendago4 Plugin URI: https://extendago-connect.com/ 5 5 Description: The Wordpress plugin for connecting Woocommerce with Extenda GO / Wallmob. You can manage your products inside Extenda GO or make your webshop as leading foor product manangement. You Stock changes will be two-way binding. 6 Version: 1.5. 76 Version: 1.5.8 7 7 Requires Plugins: woocommerce 8 8 Author: Arture B.V. -
extendago-wp-connection/trunk/includes/cronjob/class-extendago-cronjob-functions.php
r3208968 r3208980 285 285 $extendago_costs_field = get_option('extendago_costs_field'); 286 286 287 $Extendago = new Extendago_Web_Api(); 288 $VatRates = $Extendago->CurlRequest("/vat_rates", "GET"); 289 287 290 $products = array(); 288 291 foreach( $products_query->posts as $product_id ){ … … 299 302 300 303 $vat_rate_id = ''; 301 $Extendago = new Extendago_Web_Api();302 $VatRates = $Extendago->CurlRequest("/vat_rates", "GET");303 304 foreach ($VatRates as $VatRate){ 304 305 $value = get_option($VatRate['id']); -
extendago-wp-connection/trunk/includes/woocommerce/class-extendago-woocommerce-functions.php
r3208968 r3208980 40 40 $extendago_costs_field = get_option('extendago_costs_field'); 41 41 42 $Extendago = new Extendago_Web_Api(); 43 $VatRates = $Extendago->CurlRequest("/vat_rates", "GET"); 42 44 foreach( $product_ids as $product_id ){ 43 45 $product = wc_get_product( $product_id ); … … 53 55 54 56 $vat_rate_id = ''; 55 $Extendago = new Extendago_Web_Api();56 $VatRates = $Extendago->CurlRequest("/vat_rates", "GET");57 57 foreach ($VatRates as $VatRate){ 58 58 $value = get_option($VatRate['id']); -
extendago-wp-connection/trunk/readme.txt
r3208968 r3208980 5 5 Requires at least: 6.0 6 6 Tested up to: 6.7.1 7 Stable tag: 1.5. 67 Stable tag: 1.5.8 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 31 31 == Changelog == 32 32 33 = 1.5.8 = 34 * Improvement for vat-rates call 35 33 36 = 1.5.7 = 34 37 * HPOS compatibility
Note: See TracChangeset
for help on using the changeset viewer.