by theresel » Fri Mar 05, 2010 4:19 pm
Hurray.....! I found the solution. For those interested using Artisteer themes, this is what I did:
In functions.php, find this code under - function art_list_pages_filter($output)
if ($frontID)
$output = preg_replace('~<li class="([^"]*)\b(' . $pref . $frontID . ')\b([^"]*)"><a href="([^"]*)" ~',
'<li class="$1$2$3"><a href="'. get_option('home') .'" ', $output, 1);
and replace it with:
if ($frontID)
$output = preg_replace('~<li class="([^"]*)\b(' . $pref . $frontID . ')\b([^"]*)"><a href="([^"]*)" ~',
'<li class="$1$2$3"><a href="'. qtrans_convertURL(get_option('home')) .'" ', $output, 1);
Anyway, this is working like a charm for me and the Home link is now going to the right language.