add_filter( 'wdp_price_display_html', function ( $price_html, $wdp_product ) {
        if ( ! $wdp_product->are_rules_applied() ) {
            return WDP_Frontend::process_without_hooks( array(
                $wdp_product->get_wc_product(),
                'get_price_html'
            ), array( 'woocommerce_get_price_html' ) );
        }
        return $price_html;
    }, 10, 2 );