Plugin Directory

Changeset 3248597


Ignore:
Timestamp:
02/28/2025 04:12:33 PM (12 months ago)
Author:
saulmorales
Message:

tagging version 3.0.32

Location:
shipping-coordinadora-woocommerce
Files:
1 deleted
3 edited
14 copied

Legend:

Unmodified
Added
Removed
  • shipping-coordinadora-woocommerce/tags/3.1.32/includes/class-method-shipping-coordinadora-wc.php

    r3246808 r3248597  
    4242            $this->password_tracings = $this->get_option( 'sandbox_password_tracings' );
    4343            $this->nit = $this->get_option( 'sandbox_nit' );
    44 
    45             $this->id_client = $this->get_option( 'sandbox_id_client' );
    46             $this->user = $this->get_option( 'sandbox_user' );
    47             $this->password_guides = $this->get_option('sandbox_password_guides');
    4844        }else{
    4945            $this->apikey = $this->get_option( 'api_key' );
    5046            $this->password_tracings = $this->get_option( 'password_tracing' );
    5147            $this->nit = $this->get_option( 'nit' );
    52 
    53             $this->id_client = $this->get_option( 'id_client' );
    54             $this->user = $this->get_option( 'user' );
    55             $this->password_guides = $this->get_option('password_guides');
    5648        }
    5749    }
  • shipping-coordinadora-woocommerce/tags/3.1.32/readme.txt

    r3246808 r3248597  
    66Tested up to: 6.7.2
    77Requires PHP: 8.1
    8 Stable tag: 3.1.31
     8Stable tag: 3.1.32
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    117117* Fixed empty parent_slug add_submenu_page
    118118* Fixed no column render  in page orders
     119= 3.1.32 =
     120* Added compatibility with HPOS
     121* Refactor unused properties
    119122
    120123== Additional Info ==
  • shipping-coordinadora-woocommerce/tags/3.1.32/shipping-coordinadora-wc.php

    r3246808 r3248597  
    33 * Plugin Name: Shipping Coordinadora Woocommerce
    44 * Description: Shipping Coordinadora Woocommerce is available for Colombia
    5  * Version: 3.1.31
     5 * Version: 3.1.32
    66 * Author: Saul Morales Pacheco
    77 * Author URI: https://saulmoralespa.com
     
    1919
    2020if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){
    21     define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.31');
     21    define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.32');
    2222}
    2323
     
    2727
    2828add_action( 'plugins_loaded', 'shipping_coordinadora_wc_cswc_init');
     29add_action(
     30    'before_woocommerce_init',
     31    function () {
     32        if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
     33            \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__ );
     34        }
     35    }
     36);
    2937
    3038/**
  • shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-wc.php

    r3246808 r3248597  
    4242            $this->password_tracings = $this->get_option( 'sandbox_password_tracings' );
    4343            $this->nit = $this->get_option( 'sandbox_nit' );
    44 
    45             $this->id_client = $this->get_option( 'sandbox_id_client' );
    46             $this->user = $this->get_option( 'sandbox_user' );
    47             $this->password_guides = $this->get_option('sandbox_password_guides');
    4844        }else{
    4945            $this->apikey = $this->get_option( 'api_key' );
    5046            $this->password_tracings = $this->get_option( 'password_tracing' );
    5147            $this->nit = $this->get_option( 'nit' );
    52 
    53             $this->id_client = $this->get_option( 'id_client' );
    54             $this->user = $this->get_option( 'user' );
    55             $this->password_guides = $this->get_option('password_guides');
    5648        }
    5749    }
  • shipping-coordinadora-woocommerce/trunk/readme.txt

    r3246808 r3248597  
    66Tested up to: 6.7.2
    77Requires PHP: 8.1
    8 Stable tag: 3.1.31
     8Stable tag: 3.1.32
    99License: GNU General Public License v3.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    117117* Fixed empty parent_slug add_submenu_page
    118118* Fixed no column render  in page orders
     119= 3.1.32 =
     120* Added compatibility with HPOS
     121* Refactor unused properties
    119122
    120123== Additional Info ==
  • shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php

    r3246808 r3248597  
    33 * Plugin Name: Shipping Coordinadora Woocommerce
    44 * Description: Shipping Coordinadora Woocommerce is available for Colombia
    5  * Version: 3.1.31
     5 * Version: 3.1.32
    66 * Author: Saul Morales Pacheco
    77 * Author URI: https://saulmoralespa.com
     
    1919
    2020if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){
    21     define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.31');
     21    define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.32');
    2222}
    2323
     
    2727
    2828add_action( 'plugins_loaded', 'shipping_coordinadora_wc_cswc_init');
     29add_action(
     30    'before_woocommerce_init',
     31    function () {
     32        if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
     33            \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__ );
     34        }
     35    }
     36);
    2937
    3038/**
Note: See TracChangeset for help on using the changeset viewer.