Quote:
Originally Posted by Dilldogs
I am using vb 4.1.7 is there anyway you could get this to work for 4.0 and higher?
|
The problem is the hook this runs on does not exist in the code until 4.1.1.0.
If You want I suppose you can add the hook manually.
You'll need to edit 2 things.
First, edit your
includes/functions_facebook.php file
Find the line:
And directly ABOVE that add the line:
Code:
($hook = vBulletinHook::fetch_hook('fb_opengraph_array')) ? eval($hook) : false;
Then save and re-upload the file. I suggest you rename the original on your server so you have a backup before you upload the changed file. Rename if to something like functions_facebook_old.php (make sure you keep the .php extension)
Then edit this product's .xml file before you import it to product manager.
Find:
and change it to
and save the file and import it.
It *should* work.
Also note- you'll never be able to edit the plugin in plugin manager because your vBulletin version doesn't know the hook exists and won't let you re-save the plugin in the correct hook. Not that you should have any reason to edit the plugin, just keep it in mind.