Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Top Search Words Page

Quote Reply
Top Search Words Page
Hi Andy,
can you modify the Top Search Word global in the Ultra globals plugin so that there is an option to show the slog_hits (entries in database) beside a Search Word.

I'm just trying to built a 50 Top Searchwords page and it would be great to display it like that

Top Search Words
Searchword 1 (20 entries)
Searchword 2 (15 entries)
Searchword 3 (57 entries)
Searchword 4 (5 entries)
...

Thanks

Matthias
gpaed.de
Quote Reply
Re: [Matthias70] Top Search Words Page In reply to
Hi,

That tag should already be available. Do a dump of the loop:

Code:
<%DUMP search_logger_top_words%>

..and you should see the value for that tag 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] Top Search Words Page In reply to
Hi Andy,
where do I have to put this part
Code:
<%DUMP search_logger_top_words%>



Code:
<%Plugins::ULTRAGlobals::Top_Search_Words('50')%>
<%if search_logger_top_words.length%>
<ul>
<%loop search_logger_top_words%>
<li><a href="<%config.db_cgi_url%>/search.cgi?query=<%GT::CGI::escape($slog_query)%>"><%GT::CGI::html_escape($slog_query)%></a></li>
<%endloop%>
</ul>
<%else%>
No search terms yet
<%endif%>
Thanks

Matthias
gpaed.de
Quote Reply
Re: [Matthias70] Top Search Words Page In reply to
Sorry, I found a solution,
Thanks

Code:
<%Plugins::ULTRAGlobals::Top_Search_Words('50')%>
<%if search_logger_top_words.length%>
<ul>
<%loop search_logger_top_words%>
<li><a href="<%config.db_cgi_url%>/search.cgi?query=<%GT::CGI::escape($slog_query)%>"><%GT::CGI::html_escape($slog_query)%> (<%slog_hits%>)</a></li>
<%endloop%>
</ul>
<%else%>
No search terms yet
<%endif%>

Matthias
gpaed.de

Last edited by:

Matthias70: May 4, 2008, 2:24 AM
Quote Reply
Re: [Matthias70] Top Search Words Page In reply to
Glad you got it working :)

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!