Skip to content
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.givewp-donation-amount__description').forEach(function (el) {
if (el.dataset.processed) return;
el.dataset.processed = 'true';
var text = el.textContent.trim();
var match = text.match(/^([^(]+)(.*)$/);
if (!match) return;
el.innerHTML =
'' +
match[1].trim() +
'' +
(match[2] ? ' ' + match[2].trim() : '');
});
});