Plugin Directory

Changeset 2472818


Ignore:
Timestamp:
02/11/2021 05:46:00 AM (5 years ago)
Author:
codisto
Message:

http://plugins.svn.wordpress.org/codistoconnect/tags/1.3.56

Location:
codistoconnect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • codistoconnect/trunk/changelog.txt

    r2459353 r2472818  
    11*** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto ***
    22
    3 2021-01-18
     32021-01-29 - version 1.3.56
     4* Update - shipping order line method update
     5* Fix - fix for products before save action
     6
     72021-01-18 - version 1.3.55
    48* Update - additional endpoints for Google integration
    59* Update - improvements to registration screen
  • codistoconnect/trunk/connect.php

    r2459353 r2472818  
    66 * Author: Codisto
    77 * Author URI: https://codisto.com/
    8  * Version: 1.3.55
     8 * Version: 1.3.56
    99 * Text Domain: codisto-linq
    1010 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2
     
    1515 *
    1616 * @package Codisto LINQ by Codisto
    17  * @version 1.3.55
     17 * @version 1.3.56
    1818 */
    1919
     
    2222}
    2323
    24 define( 'CODISTOCONNECT_VERSION', '1.3.55' );
     24define( 'CODISTOCONNECT_VERSION', '1.3.56' );
    2525define( 'CODISTOCONNECT_RESELLERKEY', '' );
    2626
     
    17231723
    17241724                            } else {
    1725 
     1725                                $method_id = (string)$orderline->productcode;
     1726                                if ( $method_id == null ) {
     1727                                    $method_id = '';
     1728                                }
    17261729                                $item_id = wc_add_order_item(
    17271730                                    $order_id,
     
    17321735                                );
    17331736
     1737                                wc_add_order_item_meta($item_id, 'method_id', $method_id);
    17341738                                wc_add_order_item_meta( $item_id, 'cost', wc_format_decimal( (float)$orderline->defaultcurrencylinetotal) );
    17351739                                wc_add_order_item_meta( $item_id, 'total_tax', wc_format_decimal( (float)$orderline->defaultcurrencylinetotalinctax - (float)$orderline->defaultcurrencylinetotal) );
     
    32053209        add_filter( 'admin_body_class',                     array( $this, 'admin_body_class' ) );
    32063210        add_action( 'woocommerce_product_bulk_edit_save',   array( $this, 'bulk_edit_save' ) );
    3207         add_action( 'woocommerce_before_product_object_save',   array( $this, 'product_save', 10, 2 ) );
     3211        add_action( 'woocommerce_before_product_object_save',   array( $this, 'product_save' ), 10, 2 );
    32083212        add_action( 'save_post',                            array( $this, 'product_save' ), 10, 2 );
    32093213        add_filter( 'woocommerce_product_data_tabs',        array( $this, 'add_ebay_product_tab' ) );
  • codistoconnect/trunk/readme.txt

    r2459353 r2472818  
    44Requires at least: 4.0
    55Tested up to: 5.6.0
    6 Stable tag: 1.3.55
     6Stable tag: 1.3.56
    77License: GPLv2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.txt
     
    9797== Changelog ==
    9898
    99 = 1.3.54 - 18/01/2021 =
     99= 1.3.56 - 29/01/2021 =
     100* Update - shipping order line method update
     101* Fix - fix for products before save action
     102
     103= 1.3.55 - 18/01/2021 =
    100104* Update - additional endpoints for Google integration
    101105* Update - improvements to registration screen
Note: See TracChangeset for help on using the changeset viewer.