PDA

View Full Version : Disabling URLs


netmed
04-20-2006, 08:25 PM
Hi,

I know this is a bit of a sacrilege but I am trying to use the script to list club venues by location but need to disable the URL field so I can just enter normal text.

Can anyone give me any tips?

Alex

gmschmitz
04-26-2006, 04:52 PM
If you are just trying to get rid of the URL in all your links open your link.tpl in the template folder:

find:(around line "8")

<td width="543">

<a id="{$link.ID}" href="{$link.URL}"
{* nofollow *}

and remove:,
href="{$link.URL}"

Then find:(around line 16)
{$link.DESCRIPTION}
<span class="url">{$link.URL}


and remove the
{$link.URL}

Let me know if you have any problems with this.

Gary