The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#262
|
|||
|
|||
Quote:
then my template looks like: Code:
<if condition="$show['post_queue']"><if condition="$show['post_queue']"> <div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div></if> <if condition="$show['attachment_queue']"><div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div></if> <if condition="$show['mass_move']"><div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div></if> <if condition="$show['mass_prune']"><div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div> </if></if> so this gives you then "<if condition="$show['post_queue']"><if condition="$show['post_queue']">" |
#263
|
||||
|
||||
Quote:
|
#264
|
||||
|
||||
i would love to get this temp.. but i am so new to this stuff it crazy. i even played to have my forum settup.. i know pathetic.. can someone explain to me how i can get this to my page? pleeease?
|
#265
|
||||
|
||||
Very nice skin. Thank you for sharing.
|
#266
|
|||
|
|||
Great skin! I'm having a few problems editing the nav bar, when I do add my codes it messes up everything these are the ones I'm trying to get working.
Code:
In 'navbar' template: FIND: ----------------------------------------------------------- <if condition="$show['member']"> <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td> ----------------------------------------------------------- BELOW ADD: ----------------------------------------------------------- <td class="vbmenu_control"><a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span></td> ----------------------------------------------------------- FIND: ----------------------------------------------------------- </if> <!-- / NAVBAR POPUP MENUS --> ----------------------------------------------------------- ABOVE ADD: ----------------------------------------------------------- <!-- My Posts Menu --> <div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">My Posts</td> </tr> <tr> <td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td> </tr> <tr> <td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td> </tr> </table> </div> <!-- / My Posts Menu --> Code:
Put this where you would like it to appear on your navbar/header $dsl_link_menu Find NAVBAR POPUP MENUS in header/navbar template and add this below it: $dsl_link_menu_options |
#267
|
||||
|
||||
Quote:
Code:
<a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span> For your first bit. And in this style the buttons are in the header not the navbar. |
#268
|
|||
|
|||
great template to the OP
But Im having a few problems installing ibProArcade v2.6.7 Ive got to Quote:
Quote:
Quote:
But Ive searched the template and the td class vbmenu_control is not in there? Does anyone know why this is and where can I find it please? Ive searched the style and cant find any reference to any of the above code :down: |
#269
|
||||
|
||||
Quote:
extract it to your pc. Open cb folder you will se uplaod and dont uplaod folders just open uplaod folder and you will see cb folder upload it to your forums root (near index.php) Login admincp admincp>>styles & templates>>download -uplaod styles>>click browse than select the xml file which was located in dontupload/xml folder select it and than press import. If you want to make it your default style; Vbulletin options>>style & language options>>Default style section select Clean Blue than save. Quote:
The navbar links are located at header template not in navbar template. You must add your links to header template and you must put your dropdown menu links to navbar template; Explaining more; Open header template and find; Code:
<div class="nvlink" align="center"> Example: Code:
<a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span> Open navbar template and find; Code:
<!-- / NAVBAR POPUP MENUS --> Example: Code:
<!-- My Posts Menu --> <div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">My Posts</td> </tr> <tr> <td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td> </tr> <tr> <td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td> </tr> </table> </div> <!-- / My Posts Menu --> Quote:
Please read this post carefully. I told how can you add more links to header or navbar. |
#270
|
|||
|
|||
I tried doing as you posted and no matter where I put the my post menu it will effect the next link to the right. So My Post will show and then the FAQ will have a drop down menu with My Posts.
|
#271
|
||||
|
||||
you must add like below;
add your link header which will open when clicked. open header template and add ; <a id="yourmenuname" href="$show[nojs_link]#yourmenuname" >Your link Name</a><script type="text/javascript"> vbmenu_register("yourmenuname",true);</script> Than open navbar template and add your dropdown menu codes like below; <!-- My Posts Menu --> <div class="vbmenu_popup" id="yourmenuname" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">My Posts</td> </tr> <tr> <td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td> </tr> <tr> <td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronl y=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td> </tr> </table> </div> <!-- / My Posts Menu --> Carefull the red colored names they must be same name for work properly. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|