Gossamer Forum
Quote Reply
Change out link method
Hi,

Right now all my links are looking something like this -> <A class=link href="http://example/cgi-bin/LinksSQL/jump.cgi?ID=137">

I need them to look like this -> <a href="http://example/HP/pages/darling/grammar.htm">

I checked some other sites that use LinksSQL and I know it is possible to do it, I just don't know how.
Can anybody help me with this? Please.

Thank you.

Z

Quote Reply
Re: [Z] Change out link method In reply to
you have to change your template link.html from:

<ul>
<li><%body_font%><a class="category_links" target="_blank" href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><%Title%></a>

to:

<ul>
<li><%body_font%><a class="category_links" target="_blank" href="<%URL%>"><%Title%></a>
Quote Reply
Re: [eljot] Change out link method In reply to
Perfect. Smile

Thank you very much.

Z