Home Forums WoodMart support forum Cart Item Count Reply To: Cart Item Count

#378128

Hello,

Please add this code to the functions.php of the child theme:

function woodmart_cart_count() {
	if ( ! is_object( WC() ) || ! property_exists( WC(), 'cart' ) || ! is_object( WC()->cart ) || !
		method_exists( WC()->cart, 'get_cart_contents_count' ) || WC()->cart->cart_contents_count == 0 ) {
		return;
	}

	$count = WC()->cart->get_cart_contents_count();
	?>
	<span class="wd-cart-number wd-tools-count<?php echo woodmart_get_old_classes( ' woodmart-cart-number' ); ?>"><?php echo esc_html( $count ); ?> <span><?php echo esc_html( _n( 'item', 'items', $count, 'woodmart' ) ); ?></span></span>
	<?php
}

If you have any questions please feel free to contact us.

Best Regards