sub_ubi
Well-known member
in vBulletin I have a plugin that detects if a thread is from forum X, and if so, redirects it to newdomain.com
Here it is:
hook location: showthread_getinfo
Can anyone recreate this redirect for xf2?
Here it is:
hook location: showthread_getinfo
Code:
if ($threadinfo[forumid]==69) {
$vbulletin->url = 'https://newdomain.com/community/showthread.php?'.$threadid.'-'.$thread['title'];
standard_redirect();
}
Can anyone recreate this redirect for xf2?