Help Me Out

ahsan

New Member
I Want to Remove Somethings from my forum,

Plz help me i will ask one by one..

First one is

How To Remove Forum Jump Menu from the end of post..?
 
ahsan said:
I Want to Remove Somethings from my forum,

Plz help me i will ask one by one..

First one is

How To Remove Forum Jump Menu from the end of post..?

Exel is correct..

Admin CP -> vBulletin Options -> General Settings -> Use Forum Jump Menu -> Yes/No
 
ahsan said:
now plz tell me how to remove this..alongwith the images..?

Forum Contains New Posts
Forum Contains No New Posts

You will need to go into your forumhome template and remove the following code. Always remember to backup regardless because you may want to insert the code back in at a later date.

Code:
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
	<td>
		<table cellpadding="2" cellspacing="0" border="0">
		<tr>
			<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
			<td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
		</tr>
		<tr>
			<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
			<td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
		</tr>
		<if condition="$vboptions['showlocks']">
		<tr>
			<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
			<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
		</tr>
		</if>
		</table>
	</td>
 
ahsan why dont you read up on html,php,css and you could find most of what your asking.

for your Q go into your footer template and search LogOut but make sure you have a logout in the navbar. Also as stated before back up your footer template before doing any changes.
 
Back
Top