// Ubah harga kosong / kecil jadi tombol WhatsApp
add_filter('woocommerce_get_price_html', 'ags_call_for_price_display', 100, 2);

function ags_call_for_price_display($price, $product) {

    $product_price = (float) $product->get_price();

    // Cek jika harga <= 123 atau kosong
    if ($product_price <= 123 || empty($product_price)) {

        $wa_link = 'https://wa.me/6282311162069?text=' . rawurlencode(
            'Halo, saya ingin menanyakan harga produk: ' . $product->get_name()
        );

        $button_html = sprintf(
            '<a href="%s" target="_blank" rel="noopener noreferrer" class="call-for-price-btn">
                Hubungi untuk Harga
            </a>',
            esc_url($wa_link)
        );

        // Mencegah duplikasi tombol khusus di halaman single product
        if ( is_product() ) {
            static $shown_products = array();
            $product_id = $product->get_id();

            // Jika tombol untuk produk ini sudah pernah dicetak di halaman, sembunyikan sisanya
            if ( in_array($product_id, $shown_products) ) {
                return ''; 
            }

            // Catat ID produk ke memori bahwa tombolnya sudah dicetak
            $shown_products[] = $product_id;
            return $button_html;
        }

        // Tampil normal tanpa batasan untuk halaman lain (Shop, Kategori, dll)
        return $button_html;
    }

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