That works really well thanks.
– If the woo cart is added to nav menu using the Customising- Layout option then it has a drop down ‘mini cart sub menu’ option.
– Can I make my shortcode header cart-icon have the woo cart drop down sub menu ?
I’ve added the cart with shortcode in a hook element with the shortcode from code snippet.
add_shortcode( ‘cart_icon’, function() {
ob_start();
// Start your PHP below
echo generatepress_wc_cart_link();
// End your PHP above
return ob_get_clean();
} );