Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('astra_woo_header_cart_total', 'remove_cart_count');
- function remove_cart_count( $default){
- if(0 === ()->cart->get_cart_contents_count()){
- return false;
- }else{
- return $default;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement