Gossamer Forum
Home : Gossamer Threads Inc. : Custom Modification Jobs :

Custom Titles Mod Needed Installed

Quote Reply
Custom Titles Mod Needed Installed
Hi,

Im looking to pay someone to install a multiple title mod on links2.0. I need to be able to place different titles for each category and sub category pages.

Thank You,

Jason Bishop
Jason Bishop

Quote Reply
Re: [netnow] Custom Titles Mod Needed Installed In reply to
Could you please explain a bit more?

Cheers

Andy (mod)
andy@ultranerds.co.uk


IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
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!
Compare our different Plugin packages *new* Free CSS Templates
Quote Reply
Re: [Andy] Custom Titles Mod Needed Installed In reply to
I need to be able to place different page titles for each of my category pages and subcategory pages from the admin panel
Jason Bishop

Quote Reply
Re: [netnow] Custom Titles Mod Needed Installed In reply to
Hi,

I am talking on basis of my experience with GMail with a similar thing. Mod not needed. Save a template say title.htm with following:

<%if templatetag eq 'x1'%>

<%set Title eq 'Mytitle1'%>

<%elseif templatetag eq 'x2'%>

<%set Title eq 'Mytitle2'%>

......

.....

<%else%>

<%set Title eq 'Someothertitle'%>

<%endif%>

Then in all the templates where you would want the custom titles, have the following

<%include title.htm%>

and use <%Title%> as tag where you would want the title to be displayed.

The templatetag could be any variable by which you would want the Title to be varying.

I am unaware of LSQL but this worked in GMail and i am sure same should be possible in lsql too....

Anup