<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>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter