Skip to content

Instantly share code, notes, and snippets.

@wooxperto
Created August 16, 2023 12:45
Show Gist options
  • Save wooxperto/0bdeac626b203e7cb9bc82b5765d689a to your computer and use it in GitHub Desktop.
Save wooxperto/0bdeac626b203e7cb9bc82b5765d689a to your computer and use it in GitHub Desktop.
Hide View Cart button form Mini-Cart on WooCommerce
<?php
/**
* @snippet Hide View Cart button from Mini-cart | WooCommerce
* @author WooXperto
* @date 16.08.2023
*/
add_action( 'woocommerce_widget_shopping_cart_buttons', 'wooXperto_remove_view_cart_minicart', 1 );
function wooXperto_remove_view_cart_minicart() {
remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
}
@wooxperto
Copy link
Author

Hide View Cart button on Mini-Cart

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment