Gossamer Forum
Home : Products : Gossamer Links : Discussions :

link to site or detail - either or?

Quote Reply
link to site or detail - either or?
Hello All!

I have two types of links that I'm adding. I would like to be able to have the link either go directly to a website or to the detail page depending on whether a certain field is filled out in the add link form.

I tried an if else with the detail link and the default link but it didn't work...Thought I'd get lucky Blush


Any help?

Thanks Much!
Quote Reply
Re: [SSmeredith] link to site or detail - either or? In reply to
If the new field in the Links table was called 'Detailed_Link' and you have it set to Yes for those links where you want it to link to the detailed profile, then you could use the following on the link.html template:

<%if Detailed_Link eq 'Yes'%>
...Detailed Profile Link Here...
<%else%>
...Regular Link to Website Here...
<%endif%>

--Frank

Last edited by:

FrankM: Oct 22, 2003, 9:30 AM
Quote Reply
Re: [FrankM] link to site or detail - either or? In reply to
I've always wanted to say this...

Thanks, it worked like a charm!

Have a good one...

M