Can I display a name instead of the website address when displaying a URL in JoomD?
Ques: I am trying to create a links directory with JoomD, but I cant seem to set the link text using the website URL field type. I need to be able to display a name instead of the website address when displaying a URL – is this possible?
Ans: Go to libraries/classes/fields.php at line 1290, Find
return ”.$value.”;
and replace it with
return ‘name you want’;
if you want field title then replace it with
return ”.$field->name.”;