Home › Forums › WoodMart support forum › How to hide view cart button in mini cart via code › Reply To: How to hide view cart button in mini cart via code
May 8, 2024 at 8:36 am
#563981

Hung Pham
Keymaster
Hi thomas-8605,
Thanks for details.
Please add below code to functions.php file in Child theme, I helped you to do that
if ( ! function_exists( 'woodmart_mini_cart_view_cart_btn' ) ) {
function woodmart_mini_cart_view_cart_btn() {
return;
}
remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
add_action( 'woocommerce_widget_shopping_cart_buttons', 'woodmart_mini_cart_view_cart_btn', 10 );
}
Please remove products from cart and re-add to see the changes.
Regards,