NOTE: This instructions are working for vBET 3.3.4 We have confirmation that those are not working with vBET 3.3.6 version. We will update it when it will be possible (vB 3.6 is not officially supported and we need access to some forum on such old version).
NOTE: This integration will made your archive pages to be able to translate, but EXCEPT archive sub-forum pages - there is bug in vBulletin which do not allow to do that.
This article describes additional integration steps required for vBulletin 3.6 (tested on 3.6.12). Please note that vBET 3.x oficially supports vBulletin 3.8. Still some of our clients successfully run it on vB 3.6 (or 3.7). And because 3.6 is not officially supported it requires some additional steps during installation and upgrade. Those steps will allow your archive pages to work and be translated correctly.
NOTE those steps are necessary if:
- You are working without vBSEO.
- You are using language= links
If you are using vBSEO and/or vBET SEO translation links, then please first check does your archive pages are working and translating well after vBET installation – if yes, then do NOT made any of additional steps.
Installation additional steps (do only once):
1. Copy directory (with all content) upload/images to your archive directory on your FTP
Update additional steps (do every time when you update vBET:
1. Disable plugin 'Handle flags in archive' for hook archive_process_start (Admin CP -> Plugins & Products -> Plugin Manager)
2. Open file includes/vbenterprisetranslator_functions_hooks.php
3. Find:
Code:
<link rel="stylesheet" type="text/css" href="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/vbet.css"/>';
4. Change relative link images/vbet/flags/vbet.css to absolute one in your archive directory, like:
Code:
<link rel="stylesheet" type="text/css" href="http://YOUR_FORUM_URL_HERE/archive/images/vbet/flags/vbet.css"/>';
5. Find:
Code:
: '').'><img class="vbet-flag vbet-'.$code.'" width="16" height="11" src="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/clear.gif" alt="'.$name.'" '
6. Change relative link images/vbet/flags/vbet.css to absolute one in your archive directory, like:
Code:
: '').'><img class="vbet-flag vbet-'.$code.'" width="16" height="11" src="http://YOUR_FORUM_URL_HERE/archive/images/vbet/flags/clear.gif" alt="'.$name.'" '
EDIT:
If in your can not see flags in your archive, make this additional steps:
1. Enable plugin 'Handle flags in archive' for hook archive_process_start (Admin CP -> Plugins & Products -> Plugin Manager)
2. Edit plugin - Handle flags in archive
3. Find line
Code:
<link rel="stylesheet" type="text/css" href="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/vbet.css"/>';
4. Change relative link images/vbet/flags/vbet.css to absolute one in your archive directory, like:
Code:
$metatags .= '
<link rel="stylesheet" type="text/css" href="http://YOUR_FORUM_URL_HERE/archive/images/vbet/flags/vbet.css"/>';
5. Save
PS.
Great thanks to mario06 for possibility to made this integration