// Checkout MRP Display
add_filter('woocommerce_cart_item_subtotal', function($subtotal, $cart_item, $cart_item_key) {
    $product = $cart_item['data'];
    $qty = $cart_item['quantity'];
    $regular = (float) $product->get_regular_price();
    $sale = (float) $product->get_sale_price();
    
    if($regular > 0 && $sale > 0 && $regular > $sale) {
        $mrp_total = wc_price($regular * $qty);
        $sale_total = wc_price($sale * $qty);
        $subtotal = '<span style="display:block;text-decoration:line-through;color:#bbb;font-size:11px;text-align:right;">' . $mrp_total . '</span><span style="color:#e53935;font-weight:600;">' . $sale_total . '</span>';
    }
    
    return $subtotal;
}, 10, 3);<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://www.madinamaktab.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-posts-sms-alert-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-taxonomies-cms_block_cat-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-taxonomies-product_tag-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-taxonomies-product_shipping_class-1.xml</loc></sitemap><sitemap><loc>https://www.madinamaktab.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
