The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
moved Forumjump - little problem
hi,
in the SHOWTHREAD template i moved the Forumjump menu right next to the Moderation menu: the problem is that Forumjump does not work properly now. i think its because the GO buttons at the forum jump and the Moderation probably have the same ID / name or so. When i want to use the Forumjump it reacts like i clicked on the GO of the Moderation menu without any thread being marked before. and it says "You did not select any posts to which the action you picked can be applied." could you please tell me what i should change so the Forumjump works? (im not 100% sure which and how many changes are necessary for this) controls part from the SHOWTHREAD template: Code:
<!-- controls below postbits --> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px"> <tr> <!--REPLY BUTTON--> <if condition="$show['largereplybutton']"> <td class="tcat" style="padding-left:25px;"> <a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID" rel="nofollow"> <if condition="$show['closethread']"> <img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /> <img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if> </a> </td> <else /> <td class="tcat" style="padding-left:25px"> </td> </if> <!--PAGENAV--> <if condition="$show['pagenav']"> <td class="tcat" align="$stylevar[right]" nowrap="nowrap" style="padding-right:25px;"> $pagenav </td> </if> </tr> </table> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr valign="top"> <!--FORUMJUMP--> <td align="$stylevar[right]" style="width:100%;padding-left:25px;padding-right:25px;"> <div class="smallfont" style="text-align:$stylevar[left]; white-space:nowrap; float:$stylevar[right]"> $forumjump </div> </td> <!--MODERATION--> <if condition="$show['inlinemod']"> <td align="$stylevar[right]" style="padding-right:25px;"> <if condition="$show['inlinemod']"> <div class="smallfont" style="text-align:$stylevar[left]; white-space:nowrap; float:$stylevar[right]"> <strong>$vbphrase[moderation]</strong> <br /> <select name="do"> <if condition="$show['managethread'] OR $show['spamctrls'] OR $show['managepost'] OR $show['approvepost'] OR $show['approveattachment'] OR $template_hook['inlinemod_post_bottom']"> <optgroup label="$vbphrase[option]"> <if condition="$show['managethread']"> <option value="mergeposts">$vbphrase[merge_posts]</option> <option value="moveposts">$vbphrase[move_posts]</option> <option value="copyposts">$vbphrase[copy_posts]</option> </if> <if condition="$show['spamctrls']"> <option value="spampost">$vbphrase[delete_posts_as_spam]</option> </if> <if condition="$show['managepost']"> <option value="deleteposts">$vbphrase[delete_posts]</option> <option value="undeleteposts">$vbphrase[undelete_posts]</option> </if> <if condition="$show['approvepost']"> <option value="approveposts">$vbphrase[approve_posts]</option> <option value="unapproveposts">$vbphrase[unapprove_posts]</option> </if> <if condition="$show['approveattachment']"> <option value="approveattachments">$vbphrase[approve_attachments]</option> <option value="unapproveattachments">$vbphrase[unapprove_attachments]</option> </if> $template_hook[inlinemod_post_bottom] </optgroup> </if> <optgroup label="____________________"> <option value="viewpost">$vbphrase[view_selected_posts]</option> <option value="clearpost">$vbphrase[clear_post_list]</option> </optgroup> </select> <input type="submit" class="button" id="inlinego" value="$vbphrase[go]" /> <input type="hidden" name="s" value="$session[sessionhash]" /> <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" /> <input type="hidden" name="threadid" value="$threadinfo[threadid]" /> <input type="hidden" name="p" value="$postid" /> <input type="hidden" name="url" value="$url" /> </div> <script type="text/javascript" src="clientscript/vbulletin_inlinemod.js?v=$vboptions[simpleversion]"></script> <script type="text/javascript"> <!-- inlineMod = new vB_Inline_Mod('inlineMod', 'post', 'inlinemodform', '$vbphrase[go_x]'); //--> </script> </if> </td> </if> </tr> </table> <!-- / controls below postbits --> forumjump template: Code:
<div class="smallfont" style="text-align:$stylevar[left];white-space:nowrap;"> <form action="forumdisplay.php" method="get"> <input type="hidden" name="s" value="$session[sessionhash]" /> <input type="hidden" name="daysprune" value="$daysprune" /> <strong>$vbphrase[forum_jump]</strong><br /> <select name="f" onchange="this.form.submit();"> <optgroup label="$vbphrase[site_areas]"> <option value="cp" $frmjmpsel[usercp]>$vbphrase[user_control_panel]</option> <option value="pm" $frmjmpsel[pm]>$vbphrase[private_messages]</option> <option value="wol" $frmjmpsel[wol]>$vbphrase[whos_online]</option> <option value="home" $frmjmpsel[home]>$vbphrase[forums_home]</option> </optgroup> <if condition="$jumpforumbits"> <optgroup label="$vbphrase[forums]"> $jumpforumbits </optgroup> </if> </select>$gobutton </form> </div> gobutton template: Code:
<input type="submit" class="button" value="$vbphrase[go]" /> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|