Quote:
Originally Posted by rhorman
This is awesome! Could you make it so it will center the video? Or where do I change that in the XML?
Thanks!
|
Open the xml file, search for this code occurence:
PHP Code:
$repl[] = $vbulletin->options['pl_ismobile']
? sprintf($vbulletin->options['autoyt_membed'], $v)
: $bbcode_parser->handle_bbcode_video("http://www.youtube.com/watch?v=".$v, "youtube;".$v);
Replace with:
PHP Code:
$repl[] = "<center>".($vbulletin->options['pl_ismobile']
? sprintf($vbulletin->options['autoyt_membed'], $v)
: $bbcode_parser->handle_bbcode_video("http://www.youtube.com/watch?v=".$v, "youtube;".$v))."</center>";
3 times.
Not tested but should work.