Gossamer Forum
Skip to Content



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.com

Merry Xmas and a Happy New Year!


Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Custom Toolbar for IE and Firefox! - Compare our different Plugin packages *new*
Free CSS Templates
Quote Reply
Re: [Andy] Edit individual pages in Links? In reply to
Thanks Andy. That seems to fit what I need.