Plugin Directory

Changeset 3196013


Ignore:
Timestamp:
11/24/2024 09:27:03 PM (16 months ago)
Author:
tribeinteractive
Message:

Releasing version 2.0.5

Location:
caddy/trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • caddy/trunk/README.txt

    r3193707 r3196013  
    77Tested up to: 6.7
    88Requires PHP: 7.4
    9 Stable tag: v2.0.3
     9Stable tag: v2.0.5
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    124124
    125125== Changelog ==
     126
     127= 2.0.5 =
     128* Improvement: Improved mobile styling for recommendations
     129* Fix: Added dependency on WooCommerce add-to-cart script
     130* Fix: Added version numbers to scripts to prevent caching issues
     131* Fix: Minor styling fixes
     132* Fix: Removed obsolete files
     133* Fix: Android Chrome styling issues
    126134
    127135= 2.0.4 =
  • caddy/trunk/caddy.php

    r3193707 r3196013  
    44 * Plugin URI:        https://usecaddy.com
    55 * Description:       A high performance, conversion-boosting side cart for your WooCommerce store that improves the shopping experience & helps grow your sales.
    6  * Version:           2.0.4
     6 * Version:           2.0.5
    77 * Author:            Tribe Interactive
    88 * Author URI:        https://usecaddy.com
     
    2525 */
    2626if ( ! defined( 'CADDY_VERSION' ) ) {
    27     define( 'CADDY_VERSION', '2.0.4' );
     27    define( 'CADDY_VERSION', '2.0.5' );
    2828}
    2929if ( ! defined( 'CADDY_PLUGIN_FILE' ) ) {
  • caddy/trunk/languages/caddy.pot

    r3193707 r3196013  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Caddy - Smart Side Cart for WooCommerce 2.0.4\n"
     5"Project-Id-Version: Caddy - Smart Side Cart for WooCommerce 2.0.5\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/caddy\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • caddy/trunk/public/class-caddy-public.php

    r3193535 r3196013  
    7676        );
    7777
     78        // Force load WooCommerce add-to-cart script regardless of settings
     79        wp_enqueue_script( 'wc-add-to-cart', WC()->plugin_url() . '/assets/js/frontend/add-to-cart.min.js', array('jquery'), WC()->version, true );
     80
    7881        // Register scripts first
    79         wp_register_script( 'cc-tabby-js', CADDY_DIR_URL . '/public/js/tabby.min.js', array( 'jquery' ), null, true );
    80         wp_register_script( 'cc-tabby-polyfills-js', CADDY_DIR_URL . '/public/js/tabby.polyfills.min.js', array( 'jquery' ), null, true );
    81         wp_register_script( 'cc-slick-js', CADDY_DIR_URL . '/public/js/slick.min.js', array( 'jquery' ), null, true );
    82         wp_register_script( 'caddy-public', CADDY_DIR_URL . '/public/js/caddy-public.js', array( 'jquery' ), $this->version, true );
     82        wp_register_script( 'cc-tabby-js', CADDY_DIR_URL . '/public/js/tabby.min.js', array( 'jquery' ), $this->version, true );
     83        wp_register_script( 'cc-tabby-polyfills-js', CADDY_DIR_URL . '/public/js/tabby.polyfills.min.js', array( 'jquery' ), $this->version, true );
     84        wp_register_script( 'cc-slick-js', CADDY_DIR_URL . '/public/js/slick.min.js', array( 'jquery' ), $this->version, true );
     85        wp_register_script( 'caddy-public', CADDY_DIR_URL . '/public/js/caddy-public.js', array( 'jquery', 'wc-add-to-cart' ), $this->version, true );
    8386
    8487        // Localize before enqueuing
  • caddy/trunk/public/css/caddy-public.css

    r3193535 r3196013  
    807807  margin-top: 5px;
    808808  line-height: 0;
     809  text-align: left;
    809810}
    810811
     
    860861  display: inline-block !important;
    861862  margin-right: 25px !important;
     863  margin-top: 0 !important;
    862864  margin-left: 0 !important;
     865  padding-top: 15px !important;
     866  padding-bottom: 0 !important;
    863867  text-align: center !important;
    864868  font-size: 0 !important;
    865   padding-top: 15px !important;
    866   margin-top: 0 !important;
    867869  line-height: 22px !important;
    868870}
     
    960962  width: 30px;
    961963  height: 33px;
     964  min-height: 33px;
    962965  box-sizing: border-box;
    963966  vertical-align: top;
     
    10541057
    10551058.cc-pl-upsells .cc-pl-upsells-slider {
    1056   width: 87%;
     1059  width: auto;
    10571060  margin: 0 auto;
     1061  padding: 0 30px;
    10581062}
    10591063
     
    20792083 
    20802084  .cc-pl-upsells .cc-pl-upsells-slider {
    2081     width: 88%;
     2085    padding: 0 20px;
    20822086  }
    20832087 
Note: See TracChangeset for help on using the changeset viewer.