asked on 3/19/2019
add_action( 'woocommerce_before_single_product_summary', 'thp_single_category', 11 ); function thp_single_category() { if (is_product_category('Digestive System') ) { echo 'Something else'; echo '<a href="/digestive-process-sp-266">The Digestive Process</a>'; } elseif (is_product_category ('immune system')){ echo 'Something else'; } }
Select allOpen in new window