show product price based on woocommerce
Display product prices based on WooCommerce settings.
add_filter('woocommerce_get_price_html', function ($html, $product){
$html ="<div class="price-wrapper"><p class="price product-page-price"><?php echo $html; ?></p></div>";
return $html;
}, 301, 2);