Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Category on new page

Quote Reply
Category on new page
I'm trying to put the category unlinked next to each listing on my New Page. I can't seem to find the correct tag to put in there.

This is what I have in my new.html
<%if link_results_loop%>
<%loop link_results_loop%>
<%include link2.html%>
<%endloop%>
<%endif%>

And this is what I have in links2.html
<li type="circle">
<span class="type">
<%Type%>
</span>
<a class="link" href="<%URL%>">
<%Title%>
</a>
<span class="descript">- <%Description%></span>
<a class="nw" href="<%URL%>" target="_blank">NW</a>
<a class="detailed" href="<%build_root_url%>/Detailed/<%ID%>.html ">DETAILS</a>
</ul>
---
I'm a very boring lady, very, very boring.
Quote Reply
Re: [Cleo_] Category on new page In reply to
You should be able to do it with this global;

http://www.sqlwidgets.com/...ces/Detailed/10.html

Code:
<%if link_results_loop%>
<%loop link_results_loop%>
<%globalname($ID)%><BR>
<%include link2.html%>
<%endloop%>
<%endif%>

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Category on new page In reply to
I tried that but it puts the category linked above the listing.

I'm trying to do this.
Type Category Title Description
Only the title should be linked.

I know this can be done because another list that uses Links SQL does it on their new page.
---
I'm a very boring lady, very, very boring.