mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
257 B
Text
5 lines
257 B
Text
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 );
|
|
}
|