woocommerce product on page code example
Example 1: how to get woocommerce product price
$_product->get_regular_price();
$_product->get_sale_price();
$_product->get_price();
Example 2: is product category woocommerce
if( is_product_category() ) {
// yay, we are on a product category page!
} else {
}