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

Re: [Kool] Hide affiliate links

Quote Reply
Re: [Kool] Hide affiliate links In reply to
Hi,

The easiest way, would be to "split" it at the ?, so anything after that doesn't get shown. Here's how you could do it:

trim_url_down

Code:
sub {
my $url = $_[0];
my @tmp = split /\?/, $url;
return $tmp[0];
}

Then just call with <%trim_url_down($URL)%>

Hope that helps.

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!
Subject Author Views Date
Thread Hide affiliate links Kool 19215 Sep 11, 2007, 8:36 PM
Post Re: [Kool] Hide affiliate links
Andy 18718 Sep 12, 2007, 1:48 AM
Thread Re: [Kool] Hide affiliate links
Clint 18758 Sep 12, 2007, 4:16 AM
Thread Re: [Clint] Hide affiliate links
Andy 18742 Sep 12, 2007, 6:36 AM
Thread Re: [Andy] Hide affiliate links
Kool 18727 Sep 12, 2007, 10:39 AM
Thread Re: [Kool] Hide affiliate links
Andy 18691 Sep 13, 2007, 2:09 AM
Thread Re: [Andy] Hide affiliate links
Kool 18686 Sep 13, 2007, 5:10 AM
Thread Re: [Kool] Hide affiliate links
Alba 18660 Sep 13, 2007, 11:14 AM
Thread Re: [Alba] Hide affiliate links
Kool 18679 Sep 13, 2007, 2:31 PM
Post Re: [Kool] Hide affiliate links
Alba 18644 Sep 13, 2007, 2:46 PM
Thread Re: Hide affiliate links
HopeForYou 18275 Jun 4, 2009, 8:50 AM
Thread Re: [HopeForYou] Hide affiliate links
Andy 18261 Jun 4, 2009, 9:23 AM
Thread Post deleted by HopeForYou
HopeForYou 18237 Jun 4, 2009, 9:25 AM
Thread Re: [HopeForYou] Hide affiliate links
Andy 18202 Jun 4, 2009, 9:36 AM
Thread Re: [Andy] Hide affiliate links
HopeForYou 18182 Jun 4, 2009, 9:50 AM
Thread Re: [HopeForYou] Hide affiliate links
Andy 18244 Jun 4, 2009, 9:58 AM
Thread Re: [Andy] Hide affiliate links
Andy 18199 Jun 4, 2009, 9:58 AM
Thread Re: [Andy] Hide affiliate links
HopeForYou 18219 Jun 4, 2009, 10:04 AM
Post Re: [HopeForYou] Hide affiliate links
HopeForYou 18133 Jun 4, 2009, 4:11 PM
Thread Re: [Andy] Hide affiliate links
HopeForYou 18177 Jun 4, 2009, 5:04 PM
Thread Re: [HopeForYou] Hide affiliate links
HopeForYou 18219 Jun 4, 2009, 7:34 PM
Post Re: [HopeForYou] Hide affiliate links
Andy 18172 Jun 4, 2009, 11:31 PM