Plugin Directory

Changeset 3279387


Ignore:
Timestamp:
04/22/2025 07:11:57 PM (11 months ago)
Author:
moinuddinmunna
Message:

Major bug fix for php lower version

Location:
complete-mini-cart-for-woocommerce
Files:
35 added
3 edited

Legend:

Unmodified
Added
Removed
  • complete-mini-cart-for-woocommerce/trunk/complete-mini-cart-for-woocommerce.php

    r3279358 r3279387  
    55 * Plugin URI:        https://cmcw.mnddn.site/
    66 * 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.2
     7 * Version:           2.0.3
    88 * Requires at least: 6.0
    99 * Requires PHP:      7.4
     
    9393        define('CMCW_PATH', plugin_dir_path(__FILE__));
    9494        define('CMCW_URL', plugin_dir_url(__FILE__));
    95         define('CMCW_VERSION', '2.0.2');
     95        define('CMCW_VERSION', '2.0.3');
    9696    }
    9797
  • complete-mini-cart-for-woocommerce/trunk/includes/shortcode/Shortcode.php

    r3279279 r3279387  
    4343        $count_font_size = get_option('cmcw_count_size') !== '' ? get_option('cmcw_count_size') : '10';
    4444        $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';
    4646        $count_bg_color = get_option('cmcw_count_bg_color') !== '' ? get_option('cmcw_count_bg_color') : '#dd9933';
    4747        $count_text_color = get_option('cmcw_text_color') !== '' ? get_option('cmcw_text_color') : '#ffffff';
     
    8484            $cart_count = esc_html(WC()->cart->get_cart_contents_count());
    8585
    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">'
    8787                . $cart_count . '</span></div>';
    8888
  • complete-mini-cart-for-woocommerce/trunk/readme.txt

    r3279358 r3279387  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88Short Description: A powerful, lightweight, and fully customizable mini cart plugin to improve user experience with an AJAX-powered cart and real-time updates.
    99License: GPLv2 or later
     
    8787* Minor bug fix
    8888
     89= 2.0.3 =
     90* Major bug fix
     91
    8992== Upgrade Notice ==
    9093= 1.0.0 =
Note: See TracChangeset for help on using the changeset viewer.