Or I was thinking of something like this but it’s not working…
function return_custom_price($reviews_allowed, $product) {
global $post, $blog_id;
$product = wc_get_product( $post_id );
$post_id = $post->ID;
$reviews_allowed = true;
return $reviews_allowed;
}
add_filter(‘woocommerce_get_price’, ‘return_custom_price’, 10, 2);