Strikeout Price Html show only Discounted Price

Display only the discounted price in the strikeout price HTML.

// Only Show Sale/Discount Price in Strikeout (Remove Initial/Original Price Html - Del tags)
add_filter('advanced_woo_discount_rules_strikeout_price_html', function ($html, $original_price, $discounted_price, $is_variable_product, $initial_price_html, $separator) {
    if ($original_price != $discounted_price) {
        $html = '<ins>' . $discounted_price . '</ins>';
    }
    return $html;
}, 10, 6);