Support

Account

Home Forums Front-end Issues Link on Text Fields Reply To: Link on Text Fields

  • You would need to supply this link, either in another field or in your code

    
    <?php 
      $text = get_field('text-feild-name');
      $link = 'some url'; // or code to get/set url
      echo '<a href="',$link,'">',$text,'</a>';
    ?>