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,

You would just do:

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

Also, that will split the http:// bit up (thus why I changed it to $tmp[2], instead of $tmp[0]). If you want to use the http:// bit in the front, you would just need to change:

Code:
return $tmp[2];

..to:

Code:
return qq|http://| . $tmp[2];

Hope that helps.

BTW, please try not to use bold in your whole post, it makes them a bit sore on the eyes :(

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 19212 Sep 11, 2007, 8:36 PM
Post Re: [Kool] Hide affiliate links
Andy 18714 Sep 12, 2007, 1:48 AM
Thread Re: [Kool] Hide affiliate links
Clint 18755 Sep 12, 2007, 4:16 AM
Thread Re: [Clint] Hide affiliate links
Andy 18739 Sep 12, 2007, 6:36 AM
Thread Re: [Andy] Hide affiliate links
Kool 18724 Sep 12, 2007, 10:39 AM
Thread Re: [Kool] Hide affiliate links
Andy 18688 Sep 13, 2007, 2:09 AM
Thread Re: [Andy] Hide affiliate links
Kool 18683 Sep 13, 2007, 5:10 AM
Thread Re: [Kool] Hide affiliate links
Alba 18657 Sep 13, 2007, 11:14 AM
Thread Re: [Alba] Hide affiliate links
Kool 18676 Sep 13, 2007, 2:31 PM
Post Re: [Kool] Hide affiliate links
Alba 18641 Sep 13, 2007, 2:46 PM
Thread Re: Hide affiliate links
HopeForYou 18272 Jun 4, 2009, 8:50 AM
Thread Re: [HopeForYou] Hide affiliate links
Andy 18258 Jun 4, 2009, 9:23 AM
Thread Post deleted by HopeForYou
HopeForYou 18234 Jun 4, 2009, 9:25 AM
Thread Re: [HopeForYou] Hide affiliate links
Andy 18198 Jun 4, 2009, 9:36 AM
Thread Re: [Andy] Hide affiliate links
HopeForYou 18178 Jun 4, 2009, 9:50 AM
Thread Re: [HopeForYou] Hide affiliate links
Andy 18241 Jun 4, 2009, 9:58 AM
Thread Re: [Andy] Hide affiliate links
Andy 18195 Jun 4, 2009, 9:58 AM
Thread Re: [Andy] Hide affiliate links
HopeForYou 18216 Jun 4, 2009, 10:04 AM
Post Re: [HopeForYou] Hide affiliate links
HopeForYou 18130 Jun 4, 2009, 4:11 PM
Thread Re: [Andy] Hide affiliate links
HopeForYou 18174 Jun 4, 2009, 5:04 PM
Thread Re: [HopeForYou] Hide affiliate links
HopeForYou 18216 Jun 4, 2009, 7:34 PM
Post Re: [HopeForYou] Hide affiliate links
Andy 18169 Jun 4, 2009, 11:31 PM