mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
8 lines
200 B
Text
8 lines
200 B
Text
add_filter('astra_woo_header_cart_total', 'remove_cart_count');
|
|
function remove_cart_count( $default){
|
|
if(0 == WC()->cart->get_cart_contents_count()){
|
|
return false;
|
|
}else{
|
|
return $default;
|
|
}
|
|
}
|