Create link from user input 7 years ago5TopicHello,Is it possible to have a field that can add <a href</a> in back end? I have a field where I ask user to input web address for medical publications that I would like to change to an actual link in the content and Intro view.Many thanksFernand 1283 PostsBucklash 7 years ago4Level 1HiYou can just use Typo -> html option in your view <a href="/$cck->getValue('some_field');">$cck->getValue('some_field_again');</a>or use beforestore field from Codepack plugins to alter the value before it is stored. fernand 7 years ago3Level 2I tried but it did not work. Should I copy and paste the code you provided in it's entirety or should I change some of it? 4229 PostsKadministrator 7 years ago2Level 3You should change field names to match your fields.Replied with tutorial(s):Playing with Typographies fernand 7 years ago0Level 4Thanks Klas. Almost working but the issue now is that it is adding my site domain right before the external link that was inputted.www.mysite.com/https://externalsite.com fernand 7 years ago0Level 4I removed the "/' and now it is working. Thank you Bucklash and Klas for your help.