Viewing 1 replies (of 1 total)
  • Hi BigDogK!

    Was faced with the same issue. Not sure how familiar you are with PHP but to make it a clickable link all you have to do is change line 234 of “send-link-to-friend.php”.

    Just search for the variable “$to_sendlink” and you should find the following:

    $to_sendlink = $_POST['sendlink'];

    Change it to:

    $to_sendlink = '<a href="' . $_POST['sendlink'] . '">' . $_POST['sendlink'] . '</a>';

    Hope this helped you! 🙂

Viewing 1 replies (of 1 total)
  • The topic ‘Friend still has to copy/paste link from email’ is closed to new replies.