Hi, @shoebski. Sorry for the delay!!!
Are your theme commercial, or custom-made? In this case, we’re added on Plugin FAQs a new question that I think will help you:
I’m theme developer. How to be compatible?
Comming Soon for WooCommerce works with the actions found in the standard product loop and single product templates.
The used actions to print the badge code are:
For single product: do_action( ‘woocommerce_after_main_content’ );
For product loop: do_action( ‘woocommerce_shop_loop_item_title’ );
You can find this actions in the templates:
wp-content/plugins/woocommerce/templates/single-product.php (single product template)
wp-content/plugins/woocommerce/templates/content-product.php (print each product on loop)
…if you want to override this files on your WooCommerce child theme, or you’re coding one from scratch,
maybe you have the same file names on your theme folder:
wp-content/themes/your-theme/woocommerce/content-product.php
wp-content/themes/your-theme/woocommerce/single-product.php
in this case, simply check you’ve this actions on your code:
For single product: do_action( ‘woocommerce_after_main_content’ );
For product loop: do_action( ‘woocommerce_shop_loop_item_title’ );
…and Coming Soon for WooCommerce will do the rest ??`