(function () {
function hideCashOnDelivery() {
// Kapıda Ödeme seçeneğini gizle
document.querySelectorAll('.option-item').forEach(function (item) {
const text = (item.innerText || '')
.replace(/\s+/g, ' ')
.trim();
if (
text.includes('Kapıda Ödeme') ||
text.includes('Kapıda Nakit Ödeme')
) {
item.style.setProperty('display', 'none', 'important');
}
});
// Sipariş özetindeki "Kapıda Ödeme Tutarı" alanını gizle
document
.querySelectorAll('.order-summary-list-item-CASH_ON_DELIVERY_AMOUNT')
.forEach(function (item) {
item.style.setProperty('display', 'none', 'important');
});
}
// İlk çalıştırma
hideCashOnDelivery();
// Ticimax/Vue sonradan DOM'u güncellerse tekrar uygula
const observer = new MutationObserver(function () {
hideCashOnDelivery();
});
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
})();