Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives
forum jump menu... Details »»
forum jump menu...
Version: , by -=dm=- -=dm=- is offline
Developer Last Online: Mar 2010 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 09-18-2002 Last Update: Never Installs: 0
 
No support by the author.

Hi
I want to move forum jump options somewhere else, can someone please help me?

Code:
<table cellpadding="0" cellspacing="0" border="0" bgcolor="#555576" width="100%">
<tr>
	<td>
	 <table cellpadding="4" cellspacing="1" border="0" width="100%">

<tr>
	<td bgcolor="#DFDFDF" colspan="6">
<table width="100%" border=0 cellspacing=0 cellpadding=0><tr><td>
<p><normalfont><b>$threadstitle</b></normalfont></p>
</td><td align=right>
<form style="margin-bottom:-1;" action="index.php?s=$session[sessionhash]" method="post">
<select name="styleid" onchange="window.location=('index.php?s=$session[sessionhash]&styleid='+this.options[this.selectedIndex].value)">
$dropdownbits
</select>
<select name="action">
<option value="">Show...</option>
<option value="">-----------------</option>
<option value="getactive">Active Threads</option>
<option value="getnew">New Posts</option>
<option value="getsticky">Important Threads</option>
<option value="getdaily">Posts Today</option>
</select>
<select name="numthreads">
<option value="5">#</option>
<option value="5">---</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
<option value="25">25</option>
<option value="30">30</option>
</select>
<input type="image" src="https://vborg.vbsupport.ru/vbimages/go.gif" border="0"
align="absbottom"></form>
</td></tr></table>
</td></tr>
<tr>
<td width="3%"></td>
<td width="30%" align="left"><smallfont color="#EEEEFF"><b>Thread</b></smallfont></td>
<td width="7%" align="center"><smallfont color="#EEEEFF"><b>Threadstarter</b></smallfont></td>
<td width="12%" align="center"><smallfont color="#EEEEFF"><b>Forum</b></smallfont></td>
  <td width="3%" align="center"><smallfont color="#EEEEFF"><b>Replies</b></smallfont></td>
  <td width="10%" align="center"><smallfont color="#EEEEFF"><b>Last Post</b></smallfont></td>
</tr>
$threadbits
</table>
</td></tr></table>
if possible I want the forum jump menu place together with right before the red aera.

thanx in advance
dm

Download Now

File Type: (21.4 KB, 56 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 09-19-2002, 12:41 PM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you want to combine the forum jump menu and the area in red then this isn't posible, however if you want the forumjump menu to appear by the side of it add $forumjump outside of the <form> tag.
Reply With Quote
  #3  
Old 09-19-2002, 01:45 PM
-=dm=- -=dm=- is offline
 
Join Date: Nov 2001
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanx NTLDR
Yes I want it by side of it.

I added the $forumjump
but it did still not show up

Code:
<table cellpadding="0" cellspacing="0" border="0" bgcolor="#555576" width="100%">
<tr>
	<td>
	 <table cellpadding="4" cellspacing="1" border="0" width="100%">

<tr>
	<td bgcolor="#DFDFDF" colspan="6">
<table width="100%" border=0 cellspacing=0 cellpadding=0><tr><td>
<p><normalfont><b>$threadstitle</b></normalfont></p>
</td><td align=right>
<form style="margin-bottom:-1;" action="index.php?s=$session[sessionhash]" method="post">
<select name="styleid" onchange="window.location=('index.php?s=$session[sessionhash]&styleid='+this.options[this.selectedIndex].value)">
$dropdownbits
</select>
<select name="action">
<option value="">Show...</option>
<option value="">-----------------</option>
<option value="getactive">Active Threads</option>
<option value="getnew">New Posts</option>
<option value="getsticky">Important Threads</option>
<option value="getdaily">Posts Today</option>
</select>
<select name="numthreads">
<option value="5">#</option>
<option value="5">---</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
<option value="25">25</option>
<option value="30">30</option>
</select>
<input type="image" src="https://vborg.vbsupport.ru/vbimages/go.gif" border="0"
align="absbottom"></form>
$forumjump
</td></tr></table>
</td></tr>
<tr>
<td width="3%"></td>
<td width="30%" align="left"><smallfont color="#EEEEFF"><b>Thread</b></smallfont></td>
<td width="7%" align="center"><smallfont color="#EEEEFF"><b>Threadstarter</b></smallfont></td>
<td width="12%" align="center"><smallfont color="#EEEEFF"><b>Forum</b></smallfont></td>
  <td width="3%" align="center"><smallfont color="#EEEEFF"><b>Replies</b></smallfont></td>
  <td width="10%" align="center"><smallfont color="#EEEEFF"><b>Last Post</b></smallfont></td>
</tr>
$threadbits
</table>
</td></tr></table>
Reply With Quote
  #4  
Old 09-19-2002, 04:49 PM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Move:

PHP Code:
makeforumjump(); 
to somewhere above the threads code within the PHP file, that will do the trick
Reply With Quote
  #5  
Old 09-19-2002, 06:09 PM
-=dm=- -=dm=- is offline
 
Join Date: Nov 2001
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanx NTLDR

now it showing up, but its apear right under the other dropdown menus, I want it on left or right side, how do I align it correct?
Reply With Quote
  #6  
Old 09-19-2002, 10:31 PM
Mono's Avatar
Mono Mono is offline
 
Join Date: Sep 2002
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Open Show thread template and find

Code:
<!-- forum jump and rate thread -->
<table cellpadding="2" cellspacing="0" border="0" width="{contenttablewidth}" {tableinvisibleextra} align="center">
<tr>
	<td>$forumjump</td>
	<td align="right">$threadrateselect</td>
</tr>
</table>
<!-- /Rate this thread -->
Move that code anywhere within the showthread template to tget it to a new location. Or you can set the td tag to align right or center. what evr you like.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:26 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03938 seconds
  • Memory Usage 2,274KB
  • Queries Executed 22 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (5)postbit
  • (1)postbit_attachment
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete