Changeset 2611032
- Timestamp:
- 10/07/2021 02:10:21 PM (4 years ago)
- Location:
- delyvax/trunk
- Files:
-
- 4 edited
-
delyvax.php (modified) (2 diffs)
-
includes/delyvax-shipping.php (modified) (1 diff)
-
includes/shipping-widget.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
delyvax/trunk/delyvax.php
r2594780 r2611032 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. 196 Version: 1.1.20 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. 19');15 define('DELYVAX_PLUGIN_VERSION', '1.1.20'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/includes/delyvax-shipping.php
r2592434 r2611032 612 612 $rate = array( 613 613 'id' => $shipper['service']['code'], 614 'label' => $s hipper['service']['name'],614 'label' => $service_label, 615 615 'cost' => $cost, 616 616 'taxes' => 'false', -
delyvax/trunk/includes/shipping-widget.php
r2586769 r2611032 67 67 68 68 } 69 } else if ( $order->has_status( array( 'preparing' )) ) {69 } else if ( $order->has_status( array( 'preparing' )) || $order->has_status( array( 'ready-to-collect' )) ) { 70 70 echo 'Tracking No.: <b>'.$TrackingCode.'</b>'; 71 71 if($TrackingCode) -
delyvax/trunk/readme.txt
r2594780 r2611032 4 4 Requires at least: 5.4 5 5 Tested up to: 5.7 6 Stable tag: 1.1. 196 Stable tag: 1.1.20 7 7 Requires PHP: 7.2 8 8 License: GPLv3 … … 31 31 32 32 == Changelog == 33 34 = 1.1.20 = 35 *Release Date - 7 Oct 2021* 36 37 * Fixed hidden print label button and service name. 33 38 34 39 = 1.1.19 =
Note: See TracChangeset
for help on using the changeset viewer.