


add_filter( 'woocommerce_checkout_fields', 'customize_checkout_fields' );

function customize_checkout_fields( $fields ) {

    if( isset($fields['billing']['billing_country']) ) {
        $fields['billing']['billing_country']['class'][] = 'hidden';
        $fields['billing']['billing_country']['required'] = false;
    }

    if( isset($fields['billing']['billing_city']) ) {
        $fields['billing']['billing_city']['class'][] = 'hidden';
        $fields['billing']['billing_city']['required'] = false;
    }

    if( isset($fields['billing']['billing_phone']) ) {
        $fields['billing']['billing_phone']['required'] = true;
    }

    return $fields;
}

add_action( 'wp_head', 'hide_checkout_fields_css' );
function hide_checkout_fields_css() {
    echo '<style>
        .woocommerce form .hidden { display:none !important; }
    </style>';
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://demo11.techzu.com.sg/sitemaps.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap>
							<loc>https://demo11.techzu.com.sg/post-sitemap1.xml</loc>
							<lastmod>2025-02-03T09:53:58+00:00</lastmod>
						</sitemap><sitemap>
							<loc>https://demo11.techzu.com.sg/page-sitemap1.xml</loc>
							<lastmod>2026-04-08T11:05:59+00:00</lastmod>
						</sitemap><sitemap>	
							<loc>https://demo11.techzu.com.sg/category-sitemap1.xml</loc>
							<lastmod>2026-06-05T16:50:47+00:00</lastmod>
						</sitemap></sitemapindex>