Changeset 2594780
- Timestamp:
- 09/07/2021 06:39:25 AM (5 years ago)
- Location:
- delyvax/trunk
- Files:
-
- 3 edited
-
delyvax.php (modified) (2 diffs)
-
functions.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
delyvax/trunk/delyvax.php
r2592434 r2594780 4 4 Plugin URI: https://delyva.com 5 5 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.1 86 Version: 1.1.19 7 7 Author: Delyva 8 8 Author URI: https://delyva.com … … 13 13 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 14 14 define('DELYVAX_API_ENDPOINT', 'https://api.delyva.app/'); 15 define('DELYVAX_PLUGIN_VERSION', '1.1.1 8');15 define('DELYVAX_PLUGIN_VERSION', '1.1.19'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/functions.php
r2592434 r2594780 18 18 function delyvax_check_cart_weight(){ 19 19 $weight = WC()->cart->get_cart_contents_weight(); 20 $min_weight = 0.00 1; // kg21 $max_weight = 100000 ; // kg20 $min_weight = 0.000; // kg 21 $max_weight = 1000000; // kg 22 22 23 23 if($weight > $max_weight){ … … 28 28 function delyvax_check_checkout_weight() { 29 29 $weight = WC()->cart->get_cart_contents_weight(); 30 $min_weight = 0.00 1; // kg31 $max_weight = 100000 ; // kg30 $min_weight = 0.000; // kg 31 $max_weight = 1000000; // kg 32 32 33 33 if($weight < $min_weight) { -
delyvax/trunk/readme.txt
r2592434 r2594780 4 4 Requires at least: 5.4 5 5 Tested up to: 5.7 6 Stable tag: 1.1.1 86 Stable tag: 1.1.19 7 7 Requires PHP: 7.2 8 8 License: GPLv3 … … 31 31 32 32 == Changelog == 33 34 = 1.1.19 = 35 *Release Date - 7 Sep 2021* 36 37 * Remove min product weight validation. 33 38 34 39 = 1.1.18 =
Note: See TracChangeset
for help on using the changeset viewer.