Status
Not open for further replies.

Exel

Active Member
2,074
2008
543
100
vbulletin_logo.png


Well, I've been getting IM'ed and PM'ed a lot lately for help with vBulletin.
I've been learning more about it and I think I'm knowledgeable enough to start helping more people, for free. Yes, It'd be nice to get donations, but it's not mandatory.

I just ask for the people requesting to follow this format:

If it's a site problem:

Site URL:
Problem:
vBulletin Version:

If it's template edits:

Site URL:
What you'd like done and where:
vBulletin Version:

Please understand that I am and will be busy and might take a little bit to complete your request. But, remember, I'm doing it free. Also, if you're afraid of giving me admin access; (People can vouch for me, and I hope they do so when they read this.)

Regards,
Exel.
 
63 comments
<if condition="$show['guest']"> REGISTER BUTTON CODE HERE </if>

From the page source, looks like:
<li class="menupadding"><a href="register.php" rel="nofollow">Register</a></li>

So it'll be:
<if condition="$show['guest']"><li class="menupadding"><a href="register.php" rel="nofollow">Register</a></li></if>
 
hey execl bro..
my problem is that i am not able to access the admincp .. so disabled d plugins temporarily to see that if it works.. it worked.. but now how will i know which all plugins aren't working?
 
hey execl bro..
my problem is that i am not able to access the admincp .. so disabled d plugins temporarily to see that if it works.. it worked.. but now how will i know which all plugins aren't working?

Plugins or products? Maybe one of them is out dated. Check to see if all the plugins support your vbulletin version. That is a quick fix.

Don't mean to steal your thread ;)
 
Site URL:creative-crew.net
What you'd like done and where:
5vxdmo.jpg

i want to know how to make a forum with a color and the second forum with other color

example

look at image
Applications box has a other color
and Games box has other color

can anyone tell me how to make this
vBulletin Version:3.8.4

thanks
 
i was creating a site for a client , and my client asked me if there is a way by which the banned users would not be shown in What's Going On? meaning the forumhome page or on the online.php page

i was able to edit the online.php page and could stop banned members from showing there using condision but not able to do it for forumhome page

Any ideas mate >
 
Styles & Templates > Edit Templates > FORUMHOME

Remove this 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>
 
Status
Not open for further replies.
Back
Top