Changeset 3196013
- Timestamp:
- 11/24/2024 09:27:03 PM (16 months ago)
- Location:
- caddy/trunk
- Files:
-
- 2 deleted
- 5 edited
-
README.txt (modified) (2 diffs)
-
caddy.php (modified) (2 diffs)
-
languages/caddy.pot (modified) (1 diff)
-
public/class-caddy-public.php (modified) (1 diff)
-
public/css/caddy-public.css (modified) (5 diffs)
-
public/js/caddy-public.min.js (deleted)
-
public/js/tabby.js (deleted)
Legend:
- Unmodified
- Added
- Removed
-
caddy/trunk/README.txt
r3193707 r3196013 7 7 Tested up to: 6.7 8 8 Requires PHP: 7.4 9 Stable tag: v2.0. 39 Stable tag: v2.0.5 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 124 124 125 125 == 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 126 134 127 135 = 2.0.4 = -
caddy/trunk/caddy.php
r3193707 r3196013 4 4 * Plugin URI: https://usecaddy.com 5 5 * 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. 46 * Version: 2.0.5 7 7 * Author: Tribe Interactive 8 8 * Author URI: https://usecaddy.com … … 25 25 */ 26 26 if ( ! defined( 'CADDY_VERSION' ) ) { 27 define( 'CADDY_VERSION', '2.0. 4' );27 define( 'CADDY_VERSION', '2.0.5' ); 28 28 } 29 29 if ( ! defined( 'CADDY_PLUGIN_FILE' ) ) { -
caddy/trunk/languages/caddy.pot
r3193707 r3196013 3 3 msgid "" 4 4 msgstr "" 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" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/caddy\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
caddy/trunk/public/class-caddy-public.php
r3193535 r3196013 76 76 ); 77 77 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 78 81 // 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 ); 83 86 84 87 // Localize before enqueuing -
caddy/trunk/public/css/caddy-public.css
r3193535 r3196013 807 807 margin-top: 5px; 808 808 line-height: 0; 809 text-align: left; 809 810 } 810 811 … … 860 861 display: inline-block !important; 861 862 margin-right: 25px !important; 863 margin-top: 0 !important; 862 864 margin-left: 0 !important; 865 padding-top: 15px !important; 866 padding-bottom: 0 !important; 863 867 text-align: center !important; 864 868 font-size: 0 !important; 865 padding-top: 15px !important;866 margin-top: 0 !important;867 869 line-height: 22px !important; 868 870 } … … 960 962 width: 30px; 961 963 height: 33px; 964 min-height: 33px; 962 965 box-sizing: border-box; 963 966 vertical-align: top; … … 1054 1057 1055 1058 .cc-pl-upsells .cc-pl-upsells-slider { 1056 width: 87%;1059 width: auto; 1057 1060 margin: 0 auto; 1061 padding: 0 30px; 1058 1062 } 1059 1063 … … 2079 2083 2080 2084 .cc-pl-upsells .cc-pl-upsells-slider { 2081 width: 88%;2085 padding: 0 20px; 2082 2086 } 2083 2087
Note: See TracChangeset
for help on using the changeset viewer.