Remove the view cart and checkout in the mini cart in WooCommerce

Remove the view cart and checkout in the mini cart in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'woocommerce_widget_shopping_cart_buttons', function(){
    // Removing Button
    remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
   remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_proceed_to_checkout', 20 );
}, 1 );

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