Gossamer Forum
Home : Products : Links 2.0 : Customization :

eliminate jump.cgi

Quote Reply
eliminate jump.cgi
Is there any way to eliminate jump.cgi so that when links are generated the are listed like:
<a class="link" href="http://www.whateverurl.com">The Site Title Here</a> <span class="descriptSite Description Here</span>


instead of like this:
<a class="link" href="http://www.whatever.com/cgi-bin/links/jump.cgi?ID=3089">Site Title</a>
<span class="descriptSite Description Here</span>



Quote Reply
Re: eliminate jump.cgi In reply to
Please check out the following thread from a few days ago, and also search the forum next time.

http://www.gossamer-threads.com/...w=collapsed&sb=5

Thomas
http://www.japanreference.com
Quote Reply
Re: eliminate jump.cgi In reply to
Do you have an example of what a page looks like that has been edited with this method <a href="<%URL%>"><%URL%></a>
I do not want visible urls on my pages. I want a Title(which is hyperlinked to the url) - description of site
not
http://www.whatever.com - description of site

here is what i currently have<a class="link" href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><%Title%></a>

<%if Description%>
<span class="descript">- <%Description%></span>

<%endif%>

would this be correct to get rid of using jump.cgi ????
<a class="link" href="<%URL%>"><%URL%>"><%Title%></a>
<%if Description%>
<span class="descript">- <%Description%></span>

<%endif%>





Quote Reply
Re: eliminate jump.cgi In reply to
Code:
<a class="link" href="<%URL%>"><%Title%></a>
Thomas
http://www.japanreference.com