I just upgraded to vb4.2.0 and these two mods below got this working great for me.
https://vborg.vbsupport.ru/showpost....&postcount=608
Quote:
Originally Posted by The Geek
I have applied for a new hook to be added to take care of the issue in 4.0.3 so hopefully this will only be "broken" for this iteration. If you want to fix, you will need to apply the following file edit:
Note: THIS IS FOR VERSION 4.0.3.
Edit includes/functions_video.php and change:
PHP Code:
function parse_video_bbcode($pagetext) { global $vbulletin;
to
PHP Code:
function parse_video_bbcode($pagetext) { global $vbulletin; require_once(DIR . '/includes/ame_prep.php'); $providers = ame_data_preparse($pagetext);
|
https://vborg.vbsupport.ru/showpost....postcount=1002
Quote:
Originally Posted by testbot
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.
1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:
Code:
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);
3. Plugin is active 'Yes'
4. Save
If you have cache enabled you might have to clear that.
|