Plugin Directory

Changeset 3377350


Ignore:
Timestamp:
10/13/2025 09:15:24 AM (3 weeks ago)
Author:
webtoffee
Message:

2.1.0 - 2025-10-13

  • [Compatibility] - Tested OK with WP 6.8.3
  • [Compatibility] - Tested OK with WC 10.2.2
Location:
decorator-woocommerce-email-customizer
Files:
176 added
4 edited

Legend:

Unmodified
Added
Removed
  • decorator-woocommerce-email-customizer/trunk/changelog

    r3357799 r3377350  
     1Version 2.1.0 , 13 October 2025
     2------------------------------------------------------------------------------------
     3* [Compatibility] - Tested OK with WC 10.2.2
     4* [Compatibility] - Tested OK with WP 6.8.3
     5
    16Version 2.0.9 , 08 September 2025
    27------------------------------------------------------------------------------------
  • decorator-woocommerce-email-customizer/trunk/decorator.php

    r3357799 r3377350  
    55 * Plugin URI:
    66 * Description: A complete marketing automation tool for WooCommerce to run email campaigns, popups, signup forms, and customize store emails.
    7  * Version: 2.0.9
     7 * Version: 2.1.0
    88 * Author: WebToffee
    99 * Author URI: https://www.webtoffee.com
    1010 * Requires at least: 4.4
    1111 * Tested up to: 6.8
    12  * WC tested up to: 10.1.2
     12 * WC tested up to: 10.2.2
    1313 * Text Domain: decorator-woocommerce-email-customizer
    1414 * Domain Path: /languages
     
    4444define('RP_DECORATOR_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)));
    4545define('WT_WOOMAIL_PATH', realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR);
    46 define('RP_DECORATOR_VERSION', '2.0.9');
     46define('RP_DECORATOR_VERSION', '2.1.0');
    4747define('RP_DECORATOR_SUPPORT_PHP', '5.3');
    4848define('RP_DECORATOR_SUPPORT_WP', '4.4');
  • decorator-woocommerce-email-customizer/trunk/includes/storefrog/class-storefrog-connector.php

    r3357799 r3377350  
    558558                    'currency_code' => '',
    559559                    'total'         => 0,
     560                    'subtotal'      => 0,
    560561                    'table'         => $load_cart_data ? $this->get_cart_table_html() : '',
    561562                ),
     
    567568                    'last_added_product_id_parent' => isset( $last_added_product_id['product_id'] ) ? $last_added_product_id['product_id'] : 0,
    568569                    'last_added_product_category' => $this->get_last_added_product_category(),
     570                    'store_currency' => function_exists('get_woocommerce_currency_symbol') ? get_woocommerce_currency_symbol() : '$',   
    569571                ),
    570572                'page' => array(
     
    599601                $cart_data['cart']['currency_code'] = get_woocommerce_currency();
    600602                $cart_data['cart']['total']         = max( 0, WC()->cart->get_total( 'edit' ) - WC()->cart->get_total_tax() ); // Cart total without tax.
     603                $cart_data['cart']['subtotal']      = max( 0, WC()->cart->get_subtotal( 'edit' ) - WC()->cart->get_subtotal_tax() );
    601604            }
    602605
  • decorator-woocommerce-email-customizer/trunk/readme.txt

    r3357799 r3377350  
    11=== WebToffee eCommerce Marketing Automation - Email marketing, Popups, Email customizer  ===
    22Contributors: webtoffee
    3 Version: 2.0.9
     3Version: 2.1.0
    44Tags: email customizer, email marketing, popups, WooCommerce marketing, conversion
    55Donate link: https://www.webtoffee.com/plugins
     
    77Requires PHP: 5.6
    88Tested up to: 6.8
    9 Stable tag: 2.0.9
     9Stable tag: 2.1.0
    1010License: GPLv3 or later
    1111License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    197197== Changelog ==
    198198
     199= 2.1.0 - 2025-10-13 =
     200* [Compatibility] - Tested OK with WP 6.8.3
     201* [Compatibility] - Tested OK with WC 10.2.2
     202
    199203= 2.0.9 - 2025-09-08 =
    200204* [Compatibility] - Tested OK with WC 10.1.2
     
    320324== Upgrade Notice ==
    321325
    322 = 2.0.9 =
    323 * [Compatibility] - Tested OK with WC 10.1.2
     326= 2.1.0 - 2025-10-13 =
     327* [Compatibility] - Tested OK with WP 6.8.3
     328* [Compatibility] - Tested OK with WC 10.2.2
Note: See TracChangeset for help on using the changeset viewer.