Plugin Directory

Changeset 2594780


Ignore:
Timestamp:
09/07/2021 06:39:25 AM (5 years ago)
Author:
delyva
Message:

version v1.1.19

Location:
delyvax/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • delyvax/trunk/delyvax.php

    r2592434 r2594780  
    44    Plugin URI: https://delyva.com
    55    description: The official Delyva plugin helps store owners to integrate WooCommerce with [Delyva](https://delyva.com) for seamless service comparison and order processing.
    6     Version: 1.1.18
     6    Version: 1.1.19
    77    Author: Delyva
    88    Author URI: https://delyva.com
     
    1313    defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
    1414    define('DELYVAX_API_ENDPOINT', 'https://api.delyva.app/');
    15     define('DELYVAX_PLUGIN_VERSION', '1.1.18');
     15    define('DELYVAX_PLUGIN_VERSION', '1.1.19');
    1616
    1717    require_once plugin_dir_path(__FILE__) . 'functions.php';
  • delyvax/trunk/functions.php

    r2592434 r2594780  
    1818function delyvax_check_cart_weight(){
    1919    $weight = WC()->cart->get_cart_contents_weight();
    20     $min_weight = 0.001; // kg
    21     $max_weight = 100000; // kg
     20    $min_weight = 0.000; // kg
     21    $max_weight = 1000000; // kg
    2222
    2323    if($weight > $max_weight){
     
    2828function  delyvax_check_checkout_weight() {
    2929    $weight = WC()->cart->get_cart_contents_weight();
    30     $min_weight = 0.001; // kg
    31     $max_weight = 100000; // kg
     30    $min_weight = 0.000; // kg
     31    $max_weight = 1000000; // kg
    3232
    3333    if($weight < $min_weight) {
  • delyvax/trunk/readme.txt

    r2592434 r2594780  
    44Requires at least: 5.4
    55Tested up to: 5.7
    6 Stable tag: 1.1.18
     6Stable tag: 1.1.19
    77Requires PHP: 7.2
    88License: GPLv3
     
    3131
    3232== Changelog ==
     33
     34= 1.1.19 =
     35*Release Date - 7 Sep 2021*
     36
     37* Remove min product weight validation.
    3338
    3439= 1.1.18 =
Note: See TracChangeset for help on using the changeset viewer.