Hide view cart on the mini cart in WooCommerce

Hide view cart on the mini cart in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'woocommerce_widget_shopping_cart_buttons', 'wc_remove_view_cart_minicart', 1 );
 
function wc_remove_view_cart_minicart() {
   remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.