Home Forums WoodMart support forum change the order of items in the mini-cart of your Woodmart theme to have the la Reply To: change the order of items in the mini-cart of your Woodmart theme to have the la

#508753

Luke Nielsen
Keymaster

Hello,

Try to define the below code in the child theme and recheck the issue.

if ( ! function_exists('wd_revers_cart_content')) {
		function wd_revers_cart_content( $cart_contents ) {
			if ( $cart_contents && is_array( $cart_contents ) ) {
				$cart_contents = array_reverse( $cart_contents );
			}

			return $cart_contents;
		}

		add_action('woocommerce_before_mini_cart_contents', function () {
			add_action('woocommerce_get_cart_contents', 'wd_revers_cart_content');
		});
		add_action('woocommerce_after_mini_cart', function () {
			remove_action('woocommerce_get_cart_contents', 'wd_revers_cart_content');
		});
}

In the meantime, feel free to ask me any questions you may have.

Kind Regards