HEX
Server: Apache
System: Linux b5.s-host.com.ua 4.18.0-305.10.2.el7.x86_64 #1 SMP Fri Jul 23 21:00:55 UTC 2021 x86_64
User: unelbhzm (1470)
PHP: 8.0.18
Disabled: NONE
Upload Files
File: /sites/nuofama.com/wp-content/themes/blocksy/inc/components/woocommerce/common/mini-cart.php
<?php

if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
	add_filter('woocommerce_add_to_cart_fragments', 'blocksy_header_cart_item_fragment');
} else {
	add_filter('add_to_cart_fragments', 'blocksy_header_cart_item_fragment');
}

remove_action('woocommerce_cart_collaterals', 'woocommerce_cross_sell_display');

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'] = $header->render_single_item('cart', [
			'render_args' => [
				'only_totals' => true
			]
		]);

		$fragments['#woo-cart-panel .ct-panel-content'] = $elements->render_cart_offcanvas([
			'has_container' => false,
			'force_output' => true
		]);

		return apply_filters('blocksy:woocommerce:cart-fragments', $fragments);
	}
}