Gossamer Forum
Quote Reply
ULTRAGlobal Plugin
How do we get the URL of the lastest review to show next to the review, similar to popular link code?
http://www.hopeforyou.com

Quote Reply
Re: [HopeForYou] ULTRAGlobal Plugin In reply to
Which code are you currently using?

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: [HopeForYou] ULTRAGlobal Plugin In reply to
HopeForYou wrote:
How do we get the URL of the lastest review to show next to the review, similar to popular link code?

<%Plugins::ULTRAGlobals::Latest_Reviews(10)%>
<%if Latest_Reviews.length%>
<%loop Latest_Reviews%>
<li><a href="<%config.db_cgi_url%>/search.cgi?query=<%GT::CGI::escape($slog_query)%>"><%GT::CGI::html_escape($slog_query)%></a></li>
<%include review_include.html%>
<%endloop%><%endif%>
http://www.hopeforyou.com

Quote Reply
Re: [HopeForYou] ULTRAGlobal Plugin In reply to
How can we get the last searched terms to display horizontally instead of vertically with the ULTRAGlobal plugin?
http://www.hopeforyou.com

Quote Reply
Re: [HopeForYou] ULTRAGlobal Plugin In reply to
Erm, I think you've got the stuff from the Top_Searches function mixed up into here. Still not 100% sure I understand what you want, but try:


Code:
<%Plugins::ULTRAGlobals::Latest_Reviews(10)%>
<%if Latest_Reviews.length%>
<%loop Latest_Reviews%>
<a href="<%config.db_cgi_url%>/review.cgi?ID=<%Review_LinkID%>">Read All Reviews</a>
<%include review_include.html%>
<%endloop%>
<%endif%>

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: [HopeForYou] ULTRAGlobal Plugin In reply to
HopeForYou wrote:
How can we get the last searched terms to display horizontally instead of vertically with the ULTRAGlobal plugin?

Just get rid of the <li> and <ul> stuff, and add a couple of &nbsp; bits between the tags (so they will be spread out)

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] ULTRAGlobal Plugin In reply to
Andy wrote:
HopeForYou wrote:
How can we get the last searched terms to display horizontally instead of vertically with the ULTRAGlobal plugin?


Just get rid of the <li> and <ul> stuff, and add a couple of &nbsp; bits between the tags (so they will be spread out)

Cheers

Thank you!
http://www.hopeforyou.com