Modify all button links that contain Dynamic Text Replacement if the URL has NO value for "utm_source" - DTR
<script>
$(document).ready(function () {
if( !document.location.search.includes("utm_source") ) {
$('.widge-button a').attr('href', 'https://goodlifeusa.com/gregg/enroll/regverifyenroller');
}
}); // ready
</script>