Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [shimmy1] Featured Links on Homepage

Quote Reply
Re: [shimmy1] Featured Links on Homepage In reply to
I think you may find it better to do it with a loop, so:

get_the_feature
Code:
sub {
my $link_db = $DB->table('Links');
$link_db->select_options ("ORDER BY rand()","LIMIT 12");
my $sth = $link_db->select ({isFeature => 'yes', isValidated => 'Yes' });
my @loop;
while (my $link = $sth->fetchrow_hashref){
push @loop, $link;
}
return { feature_loop => \@loop } ;
}

Then in your template, have:

Code:
<%~set split = Links::Utils::column_split($feature_loop.length, 3)%>

<%loop feature_loop%>
<%~set splitmod = $row_num % $split%>
<%~if row_num == 1 or splitmod == 1 or split == 1%><dl><%endif%>
<%~include homepagelink.html%>
<%~if row_num == $feature_loop.length or splitmod == 0%></dl><%endif%>
<%~endloop%>

Untested, but should work.

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!

Last edited by:

Andy: Mar 5, 2010, 7:48 AM
Subject Author Views Date
Thread Featured Links on Homepage shimmy1 8595 Mar 4, 2010, 2:30 PM
Thread Re: [shimmy1] Featured Links on Homepage
Andy 8433 Mar 5, 2010, 12:13 AM
Thread Re: [Andy] Featured Links on Homepage
shimmy1 8426 Mar 5, 2010, 5:45 AM
Thread Re: [shimmy1] Featured Links on Homepage
Andy 8423 Mar 5, 2010, 7:05 AM
Thread Re: [Andy] Featured Links on Homepage
shimmy1 8413 Mar 5, 2010, 7:26 AM
Thread Re: [shimmy1] Featured Links on Homepage
Andy 8395 Mar 5, 2010, 7:28 AM
Thread Re: [Andy] Featured Links on Homepage
shimmy1 8444 Mar 5, 2010, 7:36 AM
Thread Re: [shimmy1] Featured Links on Homepage
Andy 8397 Mar 5, 2010, 7:38 AM
Thread Re: [Andy] Featured Links on Homepage
shimmy1 8401 Mar 5, 2010, 7:47 AM
Thread Re: [shimmy1] Featured Links on Homepage
Andy 8472 Mar 5, 2010, 7:48 AM
Thread Re: [Andy] Featured Links on Homepage
shimmy1 8402 Mar 5, 2010, 7:55 AM
Post Re: [shimmy1] Featured Links on Homepage
Andy 8377 Mar 5, 2010, 8:01 AM