[REQ]vbFEngine - UA Sidebar

Kn0XXvill3

New Member
UA Sidebar 3.0.6 for VB 3.6.x - VB 3.7 Beta 3

CSS CODE
#############################

*Note* You will have to adjust the top margin to line up with your style. 26px worked for me but you may need more or less to line up with the navbar.*END NOTE*

Add this CSS code to the bottom of the Additional CSS Definitions box for the style you are using.

For a left sidebar
Code:
/* Start UASidebar Left CSS */
#UAcontent
{ margin-left: 175px; }
body 
{ height: 100%; overflow: auto; } 
#UAsidebar 
{ float:left; margin-top: 26px; width: 175px; }/* END UA Sidebar CSS */
/* End UA Sidebar Left CSS */
For a right sidebar
Code:
/* Start UASidebar Right CSS */
#UAcontentright
{ margin-right: 180px; }
body 
{ height: 100%; overflow: auto; } 
#UAsidebarright 
{ float:right; margin-top: 26px; width: 175px; }
/* End UA Sidebar Right CSS */



###############################

In the forumdisplay template find
Code:
$navbar
For a left sidebar Add below:
Code:
<!-- Start UA Sidebar Left Top  -->
$ua_sidebar_forumdisplay_bit
<!-- / End UA Sidebar Top  -->
For a right sidebar Add below:
Code:
<!-- Start UA Sidebar Right Top  -->
$ua_sidebar_forumdisplay_bit_right
<!-- / End UA Sidebar Top  -->
(If you used my Forum Intro hack place above or below <!-- / End Forum Intro --> )
####################

In footer template find
Code:
$spacer_close
Above Add:
Code:
<!-- Start UA Sidebar bottom -->
$ua_sidebar_footbit
<!-- End UA Sidebar Bottom -->

####################################################

vbFEngine Create your own Mods by vbFreelancers

7.- Installation
  1. Upload all files and directories including at "vbulletin" directory to the directory where vBulletin is installed.
  2. CMOD the following directories to 777
    1. /photos (inside vbfengine directory)
    2. /tmp (inside vbfengine/photos directory)
    3. /thumbs (inside vbfengine/photos directory)
  3. For security reasons backup your database AND turn your board off
  4. Check at your AdminCP->vBulletin Options->Plugin/Hook System that Plugin system is enabled.
  5. From your AdminCP->Plugin System->Manage Products choose Add/Import Product and import the product: product_vbfengine.xml
  6. If you want to add a link to your nav bar then you must edit the NAVBAR template:
    1. Search For:
      Code:
      <td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
    2. Add Below:
      Code:
      <td class="vbmenu_control"><a href="vbfengine.php$session[sessionurl_q]">Profiles</a></td>
    3. ....or use any other word you want
  7. By default none usergroup has permissions to use vbfengine, so you need to give permissions to any group. Goto AdminCP->Usergroups->Usergroup Manager and edit any usergroup you like to give permissions.
  8. *** IMPORTANT *** If you don't give to Guest at least "can use" permissions, then they must NOT be able to see the links (Tell a Friend function).
  9. If you've installed vbSEO, Login into vbSEO Control Panel, click "Custom Rewrite Rules", insert rewrite rules (attached in vbseo-rules.txt to not lose formatting) and save settings.
 
Top