add_filter( 'woocommerce_get_price_html', 'show_saved_amount', 100, 2 );
function show_saved_amount( $price, $product ) {

    if ( ! $product || ! $product->is_on_sale() ) {
        return $price;
    }

    // Variable product skip (safe)
    if ( $product->is_type( 'variable' ) ) {
        return $price;
    }

    $regular = (float) $product->get_regular_price();
    $sale    = (float) $product->get_sale_price();
    $save    = $regular - $sale;

    if ( $regular > 0 && $sale > 0 && $save > 0 ) {
        $price .= '<br><span style="color:#b08a57;font-weight:600;">Save ৳' . number_format( $save ) . '</span>';
    }

    return $price;
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://saajen.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://saajen.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://saajen.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://saajen.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://saajen.com/wp-sitemap-posts-mailpoet_page-1.xml</loc></sitemap><sitemap><loc>https://saajen.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://saajen.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://saajen.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
