Wholesale For WooCommerce By wpexpertsio for Wholesale price strikeout in product page

Wholesale For WooCommerce By wpexpertsio for Wholesale price strikeout in product page

add_action('advanced_woo_discount_rules_after_initialize', function (){
    if(class_exists('\Wdr\App\Router')){
    	remove_filter('woocommerce_get_price_html', array(\Wdr\App\Router::$manage_discount, 'getPriceHtml'), 100);
        add_filter('woocommerce_get_price_html', array(\Wdr\App\Router::$manage_discount, 'getPriceHtml'), 300, 2);
    }
});

add_filter('woocommerce_get_price_html', function ($html, $product){
    if(strpos($html, 'wwp-wholesale-pricing-details') !== false){
        $html = str_replace('&nbsp;<ins>', __(' Discounted price: ', 'woo-discount-rules'), $html);
    }

    return $html;
}, 301, 2);