نمایش یک نتیجه
// حذف متن مالیات از ردیف قابل پرداخت if (rows.total) { var tTh = rows.total.querySelector('th'); if (tTh && tTh.innerText.trim() !== 'قابل پرداخت') tTh.innerHTML = 'قابل پرداخت'; var tTd = rows.total.querySelector('td'); if (tTd) { tTd.style.fontWeight = 'bold'; // حذف مالیات tTd.querySelectorAll('small, p, span.includes-tax, .tax_label, .woocommerce-Price-amount + *').forEach(function(el){ if (el.textContent.includes('مالیات') || el.textContent.includes('tax') || el.tagName === 'SMALL') { el.remove(); } }); } }
نمایش یک نتیجه