Changeset 3279387
- Timestamp:
- 04/22/2025 07:11:57 PM (11 months ago)
- Location:
- complete-mini-cart-for-woocommerce
- Files:
-
- 35 added
- 3 edited
-
tags/2.0.3 (added)
-
tags/2.0.3/LICENSE.txt (added)
-
tags/2.0.3/complete-mini-cart-for-woocommerce.php (added)
-
tags/2.0.3/includes (added)
-
tags/2.0.3/includes/admin (added)
-
tags/2.0.3/includes/admin/AdminLoaderCMCW.php (added)
-
tags/2.0.3/includes/elementor-widget (added)
-
tags/2.0.3/includes/elementor-widget/widget-loader.php (added)
-
tags/2.0.3/includes/elementor-widget/widget.php (added)
-
tags/2.0.3/includes/shortcode (added)
-
tags/2.0.3/includes/shortcode/Shortcode.php (added)
-
tags/2.0.3/includes/sidebar (added)
-
tags/2.0.3/includes/sidebar/Sidebar.php (added)
-
tags/2.0.3/readme.txt (added)
-
tags/2.0.3/src (added)
-
tags/2.0.3/src/css (added)
-
tags/2.0.3/src/css/elementor-widget.css (added)
-
tags/2.0.3/src/css/fontawesome-all.min.css (added)
-
tags/2.0.3/src/css/fontawesome-iconpicker.min.css (added)
-
tags/2.0.3/src/css/style.css (added)
-
tags/2.0.3/src/js (added)
-
tags/2.0.3/src/js/admin.js (added)
-
tags/2.0.3/src/js/fontawesome-iconpicker.min.js (added)
-
tags/2.0.3/src/js/script.js (added)
-
tags/2.0.3/src/webfonts (added)
-
tags/2.0.3/src/webfonts/fa-brands-400.ttf (added)
-
tags/2.0.3/src/webfonts/fa-brands-400.woff2 (added)
-
tags/2.0.3/src/webfonts/fa-regular-400.ttf (added)
-
tags/2.0.3/src/webfonts/fa-regular-400.woff2 (added)
-
tags/2.0.3/src/webfonts/fa-solid-900.ttf (added)
-
tags/2.0.3/src/webfonts/fa-solid-900.woff2 (added)
-
tags/2.0.3/src/webfonts/fa-v4compatibility.ttf (added)
-
tags/2.0.3/src/webfonts/fa-v4compatibility.woff2 (added)
-
tags/2.0.3/templates (added)
-
tags/2.0.3/templates/admin_submenu_markup.php (added)
-
trunk/complete-mini-cart-for-woocommerce.php (modified) (2 diffs)
-
trunk/includes/shortcode/Shortcode.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
complete-mini-cart-for-woocommerce/trunk/complete-mini-cart-for-woocommerce.php
r3279358 r3279387 5 5 * Plugin URI: https://cmcw.mnddn.site/ 6 6 * Description: This plugin adds a mini cart feature to your WooCommerce store. An Elementor Widget and a shortcode. All that you needed in one simple plugin. 7 * Version: 2.0. 27 * Version: 2.0.3 8 8 * Requires at least: 6.0 9 9 * Requires PHP: 7.4 … … 93 93 define('CMCW_PATH', plugin_dir_path(__FILE__)); 94 94 define('CMCW_URL', plugin_dir_url(__FILE__)); 95 define('CMCW_VERSION', '2.0. 2');95 define('CMCW_VERSION', '2.0.3'); 96 96 } 97 97 -
complete-mini-cart-for-woocommerce/trunk/includes/shortcode/Shortcode.php
r3279279 r3279387 43 43 $count_font_size = get_option('cmcw_count_size') !== '' ? get_option('cmcw_count_size') : '10'; 44 44 $count_position = get_option('cmcw_count_position') !== '' ? get_option('cmcw_count_position') : '5'; 45 $icon_font_size = get_option( option:'cmcw_icon_size') !== '' ? get_option('cmcw_icon_size') : '20';45 $icon_font_size = get_option('cmcw_icon_size') !== '' ? get_option('cmcw_icon_size') : '20'; 46 46 $count_bg_color = get_option('cmcw_count_bg_color') !== '' ? get_option('cmcw_count_bg_color') : '#dd9933'; 47 47 $count_text_color = get_option('cmcw_text_color') !== '' ? get_option('cmcw_text_color') : '#ffffff'; … … 84 84 $cart_count = esc_html(WC()->cart->get_cart_contents_count()); 85 85 86 $shortcode_html = '<div class="cmcw-shortcode-container"><i class="' . esc_attr( text:$icon_class) . '"></i>' . '<span class="cmcw-cart-count">'86 $shortcode_html = '<div class="cmcw-shortcode-container"><i class="' . esc_attr($icon_class) . '"></i>' . '<span class="cmcw-cart-count">' 87 87 . $cart_count . '</span></div>'; 88 88 -
complete-mini-cart-for-woocommerce/trunk/readme.txt
r3279358 r3279387 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 2.0. 27 Stable tag: 2.0.3 8 8 Short Description: A powerful, lightweight, and fully customizable mini cart plugin to improve user experience with an AJAX-powered cart and real-time updates. 9 9 License: GPLv2 or later … … 87 87 * Minor bug fix 88 88 89 = 2.0.3 = 90 * Major bug fix 91 89 92 == Upgrade Notice == 90 93 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.