Hello my Friends
I need a solution to rewrite ebay Links.
Based on:
PHP Code:
$rightlink = str_replace(' ', '', $rightlink);
$parsedurl = @parse_url(vbstrtolower($rightlink));
// check if this URL is an eBay one
if (!strpos($parsedurl['host'], '.ebay.'))
{ return "<a href="$rightlink" target="_blank"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>"; }
$encodedlink = urlencode($rightlink);
$rightlink = 'http://rover.ebay.com/blablablampre=' . $encodedlink;
return "<a href="$rightlink" target="_blank"" . ($is_external ? ' rel="nofollow"' : '') . ">$text</a>";
Can anyone help ?
The old addon is:
https://vborg.vbsupport.ru/showthread.php?t=144214
it don't must be an addon, it can be a modifikation in any php/template or other.
Thanks & BR