well, dont have a real fix but managed to get this working with zoints seo... basically you can easily disable zoints for the redirected domains by editing:
The Different Domain, Different Style -> Force URL to Style plugin as follows:
PHP Code:
if ($vbulletin->options['ddds37_enable'] == 1)
{
$styleurl=$vbulletin->options['ddds37_domain'];
if(preg_match('/'.$styleurl.'/i', $_SERVER['HTTP_HOST'], $match))
{
$vbulletin->options['zointsseo_on'] = 0;
$styleid=$vbulletin->options['ddds37_style'];
}
}
basically just added the following
PHP Code:
$vbulletin->options['zointsseo_on'] = 0;
this disables zoints when using the new template...
patch not a fix