Plugin Directory

Changeset 3208980


Ignore:
Timestamp:
12/17/2024 09:08:27 AM (15 months ago)
Author:
extendago
Message:

Version 1.5.8

Location:
extendago-wp-connection/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extendago-wp-connection/trunk/extendago-wp-connection.php

    r3208968 r3208980  
    22/*
    33Plugin Name: Extendago WP Connection
    4 Plugin URI:  http://www.arture.nl/extendago
     4Plugin URI:  https://extendago-connect.com/
    55Description: 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.7
     6Version:     1.5.8
    77Requires Plugins: woocommerce
    88Author:      Arture B.V.
  • extendago-wp-connection/trunk/includes/cronjob/class-extendago-cronjob-functions.php

    r3208968 r3208980  
    285285        $extendago_costs_field = get_option('extendago_costs_field');
    286286
     287        $Extendago = new Extendago_Web_Api();
     288        $VatRates = $Extendago->CurlRequest("/vat_rates", "GET");
     289
    287290        $products = array();
    288291        foreach( $products_query->posts as $product_id ){
     
    299302
    300303            $vat_rate_id = '';
    301             $Extendago = new Extendago_Web_Api();
    302             $VatRates = $Extendago->CurlRequest("/vat_rates", "GET");
    303304            foreach ($VatRates as $VatRate){
    304305                $value = get_option($VatRate['id']);
  • extendago-wp-connection/trunk/includes/woocommerce/class-extendago-woocommerce-functions.php

    r3208968 r3208980  
    4040            $extendago_costs_field = get_option('extendago_costs_field');
    4141
     42            $Extendago = new Extendago_Web_Api();
     43            $VatRates = $Extendago->CurlRequest("/vat_rates", "GET");
    4244            foreach( $product_ids as $product_id ){
    4345                $product = wc_get_product( $product_id );
     
    5355
    5456                $vat_rate_id = '';
    55                 $Extendago = new Extendago_Web_Api();
    56                 $VatRates = $Extendago->CurlRequest("/vat_rates", "GET");
    5757                foreach ($VatRates as $VatRate){
    5858                    $value = get_option($VatRate['id']);
  • extendago-wp-connection/trunk/readme.txt

    r3208968 r3208980  
    55Requires at least: 6.0
    66Tested up to: 6.7.1
    7 Stable tag: 1.5.6
     7Stable tag: 1.5.8
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    3131== Changelog ==
    3232
     33= 1.5.8 =
     34* Improvement for vat-rates call
     35
    3336= 1.5.7 =
    3437* HPOS compatibility
Note: See TracChangeset for help on using the changeset viewer.