Quote:
Originally Posted by Chadi
The navbar menu does not appear in my skin.
Could you please explain how to manually edit the template?
I did already add a favorite thread for testing.
|
Since you are running vBulletin 3.8.x, the best solution for you is:
Find a plugin whose title is 'vBFavorites: Initialize', it is located under 'global_start'. You do that using the plugin manager. Find the following code:
Code:
$find_string = compile_template('<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>');
Replace it with the following code:
Code:
$find_string = '$template_hook[navbar_buttons_left]';
I think it should work for you unless your style does not have the template hook.