Gossamer Forum
Home : Products : Gossamer Links : Pre Sales :

Edit individual pages in Links?

Quote Reply
Edit individual pages in Links?
Just wondering, is it possible to edit individidual pages in Links to contain extra content, or does the entire site need to be cookie cuttered based on the templates? For example, if I want a specific category to contain custom text, is that possible?

Thanks,
Quote Reply
Re: [johnjohn] Edit individual pages in Links? In reply to
You could simply use something like this in category.html;

<%if ID eq "15"%>
show this
<%endif%>

That would show 'show this' ONLY if the category in question has the ID 15. You can do a full dump with <%GT::Template::dump%> to find out a categories ID number, if you don't want to do it via Database > Category > Search Wink

Cheers

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] Edit individual pages in Links? In reply to
Thanks Andy. That seems to fit what I need.