calin-beard
11/13/2017 - 4:07 PM

Modify all button links that contain Dynamic Text Replacement if the URL has NO value for "utm_source" - DTR

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>