Plugin Directory

Changeset 2665525


Ignore:
Timestamp:
01/26/2022 08:05:32 AM (4 years ago)
Author:
tribeinteractive
Message:

Plugin updated to version 1.8.1

Location:
caddy
Files:
78 added
4 edited

Legend:

Unmodified
Added
Removed
  • caddy/trunk/README.txt

    r2656992 r2665525  
    55Tags: caddy, woocommerce, woo, cart, side cart, sticky cart, cart notices, popup cart, woocommerce cart, shopping cart, mini-cart, floating cart
    66Requires at least: 5.0
    7 Tested up to: 5.8.3
     7Tested up to: 5.9
    88Requires PHP: 7.0
    9 Stable tag: v1.8
     9Stable tag: v1.8.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9494
    9595== Changelog ==
     96
     97= 1.8.1 =
     98* Improvement: Update save for later product listing code
    9699
    97100= 1.8 =
  • caddy/trunk/caddy.php

    r2656992 r2665525  
    1010 * Plugin URI:        https://usecaddy.com
    1111 * Description:       A high performance, conversion-boosting side cart for your WooCommerce store that improves the shopping experience & helps grow your sales.
    12  * Version:           1.8
     12 * Version:           1.8.1
    1313 * Author:            Tribe Interactive
    1414 * Author URI:        https://www.madebytribe.com
     
    3131 */
    3232if ( ! defined( 'CADDY_VERSION' ) ) {
    33     define( 'CADDY_VERSION', '1.8' );
     33    define( 'CADDY_VERSION', '1.8.1' );
    3434}
    3535if ( ! defined( 'CADDY_PLUGIN_FILE' ) ) {
  • caddy/trunk/languages/caddy.pot

    r2656992 r2665525  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Caddy - Smart Side Cart for WooCommerce 1.8\n"
     5"Project-Id-Version: Caddy - Smart Side Cart for WooCommerce 1.8.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/caddy\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • caddy/trunk/public/partials/cc-sfl-screen.php

    r2576919 r2665525  
    2929                foreach ( $cc_sfl_items as $product_id ) {
    3030                    $product = wc_get_product( $product_id );
     31                    if ( empty( $product ) ) {
     32                        continue;
     33                    }
    3134
    3235                    $product_name = $product->get_name();
Note: See TracChangeset for help on using the changeset viewer.