Home » WooCommerce: Hide “View Cart” Button @ Mini-Cart

WooCommerce: Hide “View Cart” Button @ Mini-Cart

by Tutor Aspire

Your goal as a WooCommerce entrepreneur is… to get paid!

We’ve already seen how to put Cart and Checkout on the same page to save your customers a step and go straight to the purchase page – but no matter if you still have a Cart page or not, you may be interested in hiding the “View Cart” button from the cart widget dropdown, so that customers can go straight to the Checkout page and convert.

Here’s a super quick snippet to achieve just that. Enjoy!

Our goal is hide the “View Cart” button inside the Mini-Cart widget, sot hat the only remaining choice for customer is to click on the “Checkout” button.

PHP Snippet: Remove “View Cart” Button @ WooCommerce Mini-Cart Widget Dropdown

/**
 * @snippet       Hide WooCommerce Mini-Cart "View Cart" Button
 * @how-to        Get tutoraspire.com FREE
 * @author        Tutor Aspire
 * @testedwith    WooCommerce 7
 * @donate $9     https://www.tutoraspire.com
 */

add_action( 'woocommerce_widget_shopping_cart_buttons', 'tutoraspire_remove_view_cart_minicart', 1 );

function tutoraspire_remove_view_cart_minicart() {
remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
}

Should this not work for some reason, make sure to empty or edit the cart contents first, and then test again.

You may also like