skip to Main Content

Add shortcode to WooCommerce product description

I am trying to auto-add some shortcode at the end of every woo product description. (not after short description). The code with which I am trying is: add_filter('product_descr','ce_add_text_short_descr'); function ce_add_text_short_descr($description){ $text="[my-shortcode-goes-here]"; return $description.$text; } That one is not working for…

VIEW QUESTION

WooCommerce hide product without thumbnail

Is there any way to hide products that have no thumbnail, I've tried this code but doesn't work. add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); function custom_pre_get_posts_query( $query ) { $query->set( 'meta_query', array( array( 'key' => '_thumbnail_id', 'value' => '0', 'compare' => '>'…

VIEW QUESTION
Back To Top
Search