I've got a small private forum, and apparently the auto YouTube embed *really* annoys some of my users. They'd like to just post the link.
Can someone tell me where the code I'd need to comment out that enables this might be?
I'm new to Vanilla. Thanks in advance!
Answers
Open up "config-defaults.php" in "conf" folder of the vanilla install.
On line 108 and 109 you will see:
$Configuration['Garden']['Format']['YouTube'] = TRUE;
$Configuration['Garden']['Format']['Vimeo'] = TRUE;
Change true to false, and video embedding won't happen anymore. Enjoy!