Need to hide “add to cart” text only in product listing loo
-
I wanna show text only in single product page and HIDE only in product listings. This code doesn’t work
add_filter( 'body_class', function( $classes ) { if ( function_exists( 'is_shop' ) && is_shop() ) { $classes = array_diff( $classes, array( 'wc-add-to-cart-no-text' ) ); } return $classes; }, 20 );
All my plugins and wordpress are up to date. FYI – Theme is “Page Builder Framework”
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Need to hide “add to cart” text only in product listing loo’ is closed to new replies.