Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Detailed Pages option

Quote Reply
Detailed Pages option
I just installed Links sql and it looks great !!

I turned on the option to build detailed pages.

But I want to be able to have the option of giving specific links detailed pages and others to just go directly to there website.

How do I specifiy links to be detailed ?

and others not to be detailed
Quote Reply
Re: [incik] Detailed Pages option In reply to
If what you are using to make the decision is a flag or field, such as "Long_Description" just use an "if" around the jump:

<%if Long_Description%>
<a href="href=<%detailed_url%>"
<%else%>
<a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"
<%endif%>


See if this works.

Sometimes it takes a bit of tweaking to make it work in your situation.


PUGDOG� Enterprises, Inc.

The best way to contact me is to NOT use Email.
Please leave a PM here.
Quote Reply
Re: [pugdog] Detailed Pages option In reply to
Did you miss the link name on purpose?
Code:
<%if Long_Description%>
<a href="href=<%detailed_url%>">Something</a>
<%else%>
<a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>">Something</a>
<%endif%>

Last edited by:

RedRum: Feb 12, 2002, 10:26 AM
Quote Reply
Re: [RedRum] Detailed Pages option In reply to
I dont understand how I'm supposed to enable or disable a link to be detailed

I just upgraded from links 2.0

I logged into modify link menu and from my previous links 2.0 upgrade it has my isDetailed mod option but when I enable the yes or no choice it still doesnt work. I also updated the if statement in the link.html template.

can anyone shed some light on what I should doto get it to work ?



(This is the Enable/Disable Hyperlink mod from http://www.isee-multimedia.co.uk/scripts/links2.htm)
Quote Reply
Re: [incik] Detailed Pages option In reply to
I was able to do this mod on my own.

Thanks for trying guys

Wink