Replace Membership Application "One Time" Addon Fee with Different Variables

PHOTO EMBED

Wed Jun 25 2025 21:55:49 GMT+0000 (Coordinated Universal Time)

Saved by @philipwhuff

<script type="text/javascript">
// This will modify the first and 3rd addon items
// Get all elements with the class 'gz-memberapp-addonfeename'
const elements = document.querySelectorAll('.gz-memberapp-addonfeename');

// Replace the text content of the first instance
if (elements.length > 0) {
    elements[0].textContent = '$100'; // Replace with your desired text
}

// Replace the text content of the third instance
if (elements.length > 2) {
    elements[2].textContent = '$100'; // Replace with your desired text
}
</script>
content_copyCOPY