🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 12:03:27 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
themes
/
blocksy
/
inc
/
components
/
woocommerce
/
common
📍 /home/eliteewa/public_html/wp-content/themes/blocksy/inc/components/woocommerce/common
🔄 Refresh
✏️
Editing: mini-cart.php
Writable
<?php if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { add_filter('woocommerce_add_to_cart_fragments', 'blocksy_header_cart_item_fragment'); add_filter('woocommerce_update_order_review_fragments', 'blocksy_header_cart_item_fragment'); } else { add_filter('add_to_cart_fragments', 'blocksy_header_cart_item_fragment'); } if (! function_exists('blocksy_header_cart_item_fragment')) { function blocksy_header_cart_item_fragment($fragments) { $header = new Blocksy_Header_Builder_Render(); $elements = new Blocksy_Header_Builder_Elements(); $fragments['.ct-dynamic-count-cart'] = $header->render_single_item('cart', [ 'render_args' => [ 'only_count' => true ] ]); $fragments['.ct-header-cart .ct-cart-content'] = $header->render_single_item('cart', [ 'render_args' => [ 'only_cart' => true ] ]); $fragments['.ct-header-cart .ct-label .ct-amount'] = $header->render_single_item('cart', [ 'render_args' => [ 'only_totals' => true ] ]); return apply_filters('blocksy:woocommerce:cart-fragments', $fragments); } }
💾 Save Changes
❌ Cancel