Changeset 3417624
- Timestamp:
- 12/11/2025 05:22:58 PM (3 months ago)
- Location:
- wc-ship-est/tags/2.1.6
- Files:
-
- 3 copied
-
. (copied) (copied from wc-ship-est/trunk)
-
readme.txt (copied) (copied from wc-ship-est/trunk/readme.txt) (2 diffs)
-
wse_functions.php (copied) (copied from wc-ship-est/trunk/wse_functions.php) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-ship-est/tags/2.1.6/readme.txt
r3414480 r3417624 6 6 Requires at least: 6.6 7 7 Tested up to: 6.9 8 Stable tag: 2.1. 58 Stable tag: 2.1.6 9 9 10 10 Add a Delivery Estimate or Shipping Method Description to the WooCommerce Cart with a simple, fast and lightweight plugin. … … 46 46 47 47 == Changelog == 48 = 2.1.6 = * Fix to null params in wse_add_email_ship_var 48 49 = 2.1.5 = * Google rating preview improvement, fix stripos null bug. 49 50 = 2.1.3 = * Extend compatibility for displaying product estimate, fix Google rating preview, add AdWords conversion reporting option. -
wc-ship-est/tags/2.1.6/wse_functions.php
r3414480 r3417624 7 7 Author URI: https://richardlerma.com/contact/ 8 8 Requires Plugins: woocommerce 9 Version: 2.1. 59 Version: 2.1.6 10 10 Text Domain: wc-ship-est 11 11 Copyright: (c) 2019-2025 rldd.net - All Rights Reserved … … 16 16 */ 17 17 18 global $wp_version,$wse_version,$wse_pro_version,$wse_version_type; $wse_version='2.1. 5';18 global $wp_version,$wse_version,$wse_pro_version,$wse_version_type; $wse_version='2.1.6'; 19 19 $wse_version_type='GPL'; 20 20 $wse_pro_version=get_option('wse_pro_version'); … … 1675 1675 1676 1676 1677 function wse_add_email_ship_var($string,$email ){1678 if(empty($email) || !is_object($email->object))return $string;1677 function wse_add_email_ship_var($string,$email,$email_obj=null,$email_data=null){ 1678 if(empty($email)||!is_object($email->object))return $string; 1679 1679 $order_id=$email->object->get_id(); 1680 1680 $del_est=wse_load_est($order_id);
Note: See TracChangeset
for help on using the changeset viewer.