Plugin Directory

Changeset 3417624


Ignore:
Timestamp:
12/11/2025 05:22:58 PM (3 months ago)
Author:
rermis
Message:

v2.1.6 = * Fix to null params in wse_add_email_ship_var

Location:
wc-ship-est/tags/2.1.6
Files:
3 copied

Legend:

Unmodified
Added
Removed
  • wc-ship-est/tags/2.1.6/readme.txt

    r3414480 r3417624  
    66Requires at least: 6.6
    77Tested up to: 6.9
    8 Stable tag: 2.1.5
     8Stable tag: 2.1.6
    99
    1010Add a Delivery Estimate or Shipping Method Description to the WooCommerce Cart with a simple, fast and lightweight plugin.
     
    4646
    4747== Changelog ==
     48= 2.1.6 = * Fix to null params in wse_add_email_ship_var
    4849= 2.1.5 = * Google rating preview improvement, fix stripos null bug.
    4950= 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  
    77Author URI: https://richardlerma.com/contact/
    88Requires Plugins: woocommerce
    9 Version: 2.1.5
     9Version: 2.1.6
    1010Text Domain: wc-ship-est
    1111Copyright: (c) 2019-2025 rldd.net - All Rights Reserved
     
    1616*/
    1717
    18 global $wp_version,$wse_version,$wse_pro_version,$wse_version_type; $wse_version='2.1.5';
     18global $wp_version,$wse_version,$wse_pro_version,$wse_version_type; $wse_version='2.1.6';
    1919$wse_version_type='GPL';
    2020$wse_pro_version=get_option('wse_pro_version');
     
    16751675
    16761676
    1677 function wse_add_email_ship_var($string,$email) {
    1678   if(empty($email) || !is_object($email->object)) return $string;
     1677function wse_add_email_ship_var($string,$email,$email_obj=null,$email_data=null){
     1678  if(empty($email)||!is_object($email->object))return $string;
    16791679  $order_id=$email->object->get_id();
    16801680  $del_est=wse_load_est($order_id);
Note: See TracChangeset for help on using the changeset viewer.