Changeset 3279358
- Timestamp:
- 04/22/2025 06:24:00 PM (11 months ago)
- Location:
- complete-mini-cart-for-woocommerce
- Files:
-
- 35 added
- 3 edited
-
tags/2.0.2 (added)
-
tags/2.0.2/LICENSE.txt (added)
-
tags/2.0.2/complete-mini-cart-for-woocommerce.php (added)
-
tags/2.0.2/includes (added)
-
tags/2.0.2/includes/admin (added)
-
tags/2.0.2/includes/admin/AdminLoaderCMCW.php (added)
-
tags/2.0.2/includes/elementor-widget (added)
-
tags/2.0.2/includes/elementor-widget/widget-loader.php (added)
-
tags/2.0.2/includes/elementor-widget/widget.php (added)
-
tags/2.0.2/includes/shortcode (added)
-
tags/2.0.2/includes/shortcode/Shortcode.php (added)
-
tags/2.0.2/includes/sidebar (added)
-
tags/2.0.2/includes/sidebar/Sidebar.php (added)
-
tags/2.0.2/readme.txt (added)
-
tags/2.0.2/src (added)
-
tags/2.0.2/src/css (added)
-
tags/2.0.2/src/css/elementor-widget.css (added)
-
tags/2.0.2/src/css/fontawesome-all.min.css (added)
-
tags/2.0.2/src/css/fontawesome-iconpicker.min.css (added)
-
tags/2.0.2/src/css/style.css (added)
-
tags/2.0.2/src/js (added)
-
tags/2.0.2/src/js/admin.js (added)
-
tags/2.0.2/src/js/fontawesome-iconpicker.min.js (added)
-
tags/2.0.2/src/js/script.js (added)
-
tags/2.0.2/src/webfonts (added)
-
tags/2.0.2/src/webfonts/fa-brands-400.ttf (added)
-
tags/2.0.2/src/webfonts/fa-brands-400.woff2 (added)
-
tags/2.0.2/src/webfonts/fa-regular-400.ttf (added)
-
tags/2.0.2/src/webfonts/fa-regular-400.woff2 (added)
-
tags/2.0.2/src/webfonts/fa-solid-900.ttf (added)
-
tags/2.0.2/src/webfonts/fa-solid-900.woff2 (added)
-
tags/2.0.2/src/webfonts/fa-v4compatibility.ttf (added)
-
tags/2.0.2/src/webfonts/fa-v4compatibility.woff2 (added)
-
tags/2.0.2/templates (added)
-
tags/2.0.2/templates/admin_submenu_markup.php (added)
-
trunk/complete-mini-cart-for-woocommerce.php (modified) (2 diffs)
-
trunk/includes/elementor-widget/widget.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
complete-mini-cart-for-woocommerce/trunk/complete-mini-cart-for-woocommerce.php
r3279328 r3279358 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. 17 * Version: 2.0.2 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. 1');95 define('CMCW_VERSION', '2.0.2'); 96 96 } 97 97 -
complete-mini-cart-for-woocommerce/trunk/includes/elementor-widget/widget.php
r3279279 r3279358 134 134 135 135 $this->add_control( 136 'c olor',136 'cmcw_icon_color', 137 137 [ 138 138 'label' => esc_html__('Color', 'complete-mini-cart-for-woocommerce'), … … 140 140 'default' => '#000000', 141 141 'selectors' => [ 142 '{{WRAPPER}} .cmcw-widget-container svg' => 'color: {{VALUE}}; fill: {{VALUE}};', 143 ], 144 ] 145 ); 146 147 $this->add_control( 148 'size', 142 '{{WRAPPER}} .cmcw-widget-container svg' => 'fill: {{VALUE}};', 143 '{{WRAPPER}} .cmcw-widget-container i' => 'color: {{VALUE}};', 144 ], 145 ] 146 ); 147 148 $this->add_control( 149 'cmcw_icon_size', 149 150 [ 150 151 'label' => esc_html__('Size', 'complete-mini-cart-for-woocommerce'), … … 160 161 'selectors' => [ 161 162 '{{WRAPPER}} .cmcw-widget-container' => 'height: {{SIZE}}{{UNIT}}; width: {{SIZE}}{{UNIT}};', 163 '{{WRAPPER}} .cmcw-widget-container i' => 'font-size:{{SIZE}}{{UNIT}};', 162 164 ], 163 165 ] -
complete-mini-cart-for-woocommerce/trunk/readme.txt
r3279328 r3279358 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 2.0. 17 Stable tag: 2.0.2 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 … … 84 84 * Minor bug fix 85 85 86 = 2.0.2 = 87 * Minor bug fix 88 86 89 == Upgrade Notice == 87 90 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.