997 3rd Ave North,
Naples, Florida 34102
(239) 304-9985
Candles & Diffusers
Showing all 35 results
/* Hide products without featured image */ add_action( 'woocommerce_product_query', 'hide_products_without_image' ); function hide_products_without_image( $query ) { $query->set( 'meta_query', array( array( 'key' => '_thumbnail_id', 'value' => '0', 'compare' => '>' ))); } /* ----- */