Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Sponsored Links grouping..

Quote Reply
Sponsored Links grouping..
Hi

I have a custom links value (IsSposnored) that will make the links appear on top in the category page and search results..

Is it possible to group them under Sponosred links then the rest of the links afterward, like yahoo search results does?
Regards
KaTaBd

Users plug In - Multi Search And Remote Search plug in - WebRing plug in - Muslims Directory
Quote Reply
Re: [katabd] Sponsored Links grouping.. In reply to
How about something like this:

<%set SponsoredTitle=0%><%set GeneralTitle=0%>

<%loop links_loop%>

<%if isSponsored eq 'Yes'%><%if SponsoredTitle==0%>Put the html for the Sponsored Links title here<%set SponsoredTitle=1%><%endif%><%else%><%if GeneralTitle==0%>Put the html for the General Links title here<%set GeneralTitle=1%><%endif%><%endif%>

<%include link.html%>

<%endloop%>

If you want to format the link results differently for the two types of link you could put the <%include link.html%> inside the if statement and use a different template for the sponsored links.
Quote Reply
Re: [afinlr] Sponsored Links grouping.. In reply to
Thanks..

That worked great EXCEPt that the first sponor link is appearing twice!!rCould not figure out why, here is the code I am using:



<%set SponsoredTitle=0%><%set GeneralTitle=0%>

<%loop links_loop%>

<%if isSponsored eq 'Yes'%>
<%if SponsoredTitle==0%>
<BR>
<p style="margin-top: 0; margin-bottom: 0">
<span style="text-transform: uppercase"><b>
<font color="#dd0000" face="Copperplate Gothic Bold" size="2">sponsored links</font></b></span></p>
<hr><BR>
<%include link.html%>

<%set SponsoredTitle=1%>
<%endif%>

<%else%>
<%if GeneralTitle==0%>

<BR>
<p style="margin-top: 0; margin-bottom: 0">
<span style="text-transform: uppercase"><b>
<font color="#dd0000" face="Copperplate Gothic Bold" size="2">general links</font></b></span></p>
<hr><BR>
<%set GeneralTitle=1%><%endif%>
<%endif%>
<%include link.html%>
<%endloop%>
Regards
KaTaBd

Users plug In - Multi Search And Remote Search plug in - WebRing plug in - Muslims Directory
Quote Reply
Re: [katabd] Sponsored Links grouping.. In reply to
You need to remove the bold one which is being printed with the title because the red one prints it again.

<%if isSponsored eq 'Yes'%>
<%if SponsoredTitle==0%>
<BR>
<p style="margin-top: 0; margin-bottom: 0">
<span style="text-transform: uppercase"><b>
<font color="#dd0000" face="Copperplate Gothic Bold" size="2">sponsored links</font></b></span></p>
<hr><BR>
<%include link.html%>

<%set SponsoredTitle=1%>
<%endif%>
<%else%>
<%if GeneralTitle==0%>

<BR>
<p style="margin-top: 0; margin-bottom: 0">
<span style="text-transform: uppercase"><b>
<font color="#dd0000" face="Copperplate Gothic Bold" size="2">general links</font></b></span></p>
<hr><BR>
<%set GeneralTitle=1%><%endif%>

<%endif%>
<%include link.html%>
<%endloop%>
Quote Reply
Re: [afinlr] Sponsored Links grouping.. In reply to
As always.. you are a star Angelic

Thanks for all the help.
Regards
KaTaBd

Users plug In - Multi Search And Remote Search plug in - WebRing plug in - Muslims Directory