Gossamer Forum
Home : Products : Gossamer Links : Discussions :

deactivating updated flag

Quote Reply
deactivating updated flag
Hello.

Is is possible to deactivate the updated flag?
I don't need it.

Knubbel
Quote Reply
Re: [Knubbel] deactivating updated flag In reply to
Hi,

Just remove this from link.html (and detailed.html, if you are using detailed pages)

Code:
<%if isChanged%><span class="updated-item"><span>updated</span></span><%endif%>

That shoudl do the trick :)

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] deactivating updated flag In reply to
Oh fine thanks.

How can I prevent that update links are on the first ranks in the search?
Quote Reply
Re: [Knubbel] deactivating updated flag In reply to
Hi,

Quote:
How can I prevent that update links are on the first ranks in the search?

Not sure what you mean? You want to stop "new" and "changed" links from showing up at the top of their category?

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: [Knubbel] deactivating updated flag In reply to
Hi,

BTW, if you are trying to do what I think you are, then you need to goto Setup > Build Options > build_sort_order_category ..from:

isNew DESC,isPopular DESC,Title

..to:

Title

Smile

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] deactivating updated flag In reply to
Oh, I found it.

Now I'm searching for the template where I can find the update-flag for the categories.

I'm searching for this:
<span class="updated-item"><span>changed</span></span></dt>

Last edited by:

Knubbel: Jun 30, 2008, 12:48 PM
Quote Reply
Re: [Knubbel] deactivating updated flag In reply to
Hi,

You need to look in subcategory.html, and remove:

Code:
<%if Has_Changed_Links eq 'Yes'%> <span class="updated-item"><span>updated</span></span><%endif%>

That should do it :)

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!