Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Quick Edit! -Edit posts directly from within the thread itself Details »»
Quick Edit! -Edit posts directly from within the thread itself
Version: 2.00, by EvilLS1 EvilLS1 is offline
Developer Last Online: May 2021 Show Printable Version Email this Page

Version: 3.0.6 Rating:
Released: 01-03-2004 Last Update: 01-24-2005 Installs: 145
 
No support by the author.

This hack will allow your users to edit their posts without having to load the editpost page..

How it works: In the bottom right-hand corner of all your posts will be a small Quick Edit icon (users will only see it in posts which belong to them).. When you click it a text box will drop down below your post allowing you to edit it instantly in the thread itself.

This will save you a lot of time when fixing those spelling mistakes, typos, or broken links. It should also help save on bandwidth since your users will no longer need to load the editpost page.

Very easy to install.. 2 file edits, 2 template edits, and 1 template to add.

Known bug: Quick Edit will NOT work with Opera web browsers. Those who use Opera simply won't see the option to quick edit (icon will be invisible when viewed in that browser). It'll work fine in other browsers such as IE or firefox.

Support: Due to work my time is limited as of late so this hack is released AS IS with no support. However, several questions have already been answered in this thread.

Update (7-25-04): Fixed a minor bug with the QE window moving further to the left with each click in mozilla/firefox browsers. To update simply replace your showthread_quickedit template with the new one. Thanks to sv1cec for this bug fix.

Add Ons:
*Show the "delete post" option for those who have permission in the Quick Edit form (also adds edit reason). (by sv1cec)
*Show the "edit reason" field in the Quick Edit form. (Requested by Convergys)
*Alternate Quickedit icon image (by ryancooper)
*Another alternate Quickedit icon (by sv1cec)
*Another alternate Quickedit icon (by charlesk)
*Yet another alternate Quickedit icon (by iguanairs)
*Give users the option to disable quick edit in the usercp (by pco)



If you find this hack useful please click the install button.

Screenshot attached:

Show Your Support

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

Comments
  #192  
Old 07-27-2004, 01:29 AM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

John,
To make it function exactly as it does in editpost.php you'd need to add this bit of code to functions_showthread.php:
Code:
	// find out if first post
	$getpost = $DB_site->query_first("
		SELECT postid
		FROM " . TABLE_PREFIX . "post
		WHERE threadid=$threadinfo[threadid]
		ORDER BY dateline
		LIMIT 1
	");
	if ($getpost['postid'] == $postid)
	{
		$isfirstpost = true;
	}
	else
	{
		$isfirstpost = false;
	}
This will add a query to showthread though. Not worth it IMO.

Dewayne
Reply With Quote
  #193  
Old 07-27-2004, 04:47 AM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EvilLS1
John,
To make it function exactly as it does in editpost.php you'd need to add this bit of code to functions_showthread.php:

(code ommited)

This will add a query to showthread though. Not worth it IMO.

Dewayne
Dewayne,

Let me understand that. You mean that the existing conditionals cannot function, until the $isfirstpost is set by the code you gave me?

Well, the code does not work as it is, it produces the following error:

Database error in vBulletin 3.0.1:

Invalid SQL:
SELECT postid
FROM post
WHERE threadid=
ORDER BY dateline
LIMIT 1

mysql error: You have an error in your SQL syntax near 'ORDER BY dateline
LIMIT 1
' at line 5

mysql error number: 1064

I also tried to fool the hack, by inserting a $isfirstpost = true statement, just above the conditionals. The behaviour is still the same. For some reason, it never sets the $show['deletepostoption'] to true, even though the $isfirstpost is always true.

I am not sure what the problem is, but $isfirstpost doesn't seem to be the solution.

Rgds
Reply With Quote
  #194  
Old 07-27-2004, 12:19 PM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Change $threadinfo[threadid] to $thread[threadid] in the query and it should work.
Reply With Quote
  #195  
Old 07-27-2004, 03:15 PM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EvilLS1
Change $threadinfo[threadid] to $thread[threadid] in the query and it should work.
The query does not complain any more, but still it does not work as expected. In other words, if the post I try to edit is the first post (even though I am the admin), it does not show me the delete part of my QE.

I even added another IF, to check if the user ID is 1, if the user ID and the poster are the same and if the post is the first one. It still does not work. I am doomed! Here is the code from functions_showthread

HTML Code:
		// Quick Edit hack
		if ($post['userid'] == $bbuserinfo['userid'])
		{
			$edittext = htmlspecialchars_uni($post['pagetext']);
			eval('$quickedit = "' . fetch_template('showthread_quickedit') . '";');
		} 
		else 
		{
			$edittext="";
			$quickedit="";
		}
		// find out if first post
		$getpost = $DB_site->query_first("
			SELECT postid
			FROM " . TABLE_PREFIX . "post
			WHERE threadid=$thread[threadid]
			ORDER BY dateline
			LIMIT 1
		");
		if ($getpost['postid'] == $postid)
		{
			$isfirstpost = true;
		}
		else
		{
			$isfirstpost = false;
		}
		if ($isfirstpost AND can_moderate($thread['forumid'], 'canmanagethreads'))
		{
			$show['deletepostoption'] = true;
		}
		else if (!$isfirstpost AND can_moderate($thread['forumid'], 'candeleteposts'))
		{
			$show['deletepostoption'] = true;
		}
		else if (((($forumperms & CANDELETEPOST) AND !$isfirstpost) OR (($forumperms & CANDELETETHREAD) AND $isfirstpost)) AND $bbuserinfo['userid'] == $post['userid'])
		{
			$show['deletepostoption'] = true;
		}

// I ADDED THIS IF BELOW, IT STILL DOES NOT SHOW THE DELETE PART OF MY QE.

		else if ($bbuserinfo['userid'] == 1 AND $bbuserinfo['userid'] == $post['userid'] AND $isfirstpost)
		{
			$show['deletepostoption'] = true;
		}
		else
		{
			$show['deletepostoption'] = false;
		}
		// End Quick Edit hack
As I said, I am no php expert, but a little further up in that file, there is this code:

HTML Code:
$forumperms = fetch_permissions($thread['forumid']);
	if (
		!$thread['isdeleted'] AND (
		can_moderate($thread['forumid'], 'caneditposts') OR
		can_moderate($thread['forumid'], 'candeleteposts') OR
		(
			$thread['open'] AND
			$post['userid'] == $bbuserinfo['userid'] AND
			($forumperms & CANEDITPOST) AND
			(	$post['dateline'] >= (TIMENOW - ($vboptions['edittimelimit'] * 60)) OR
			$vboptions['edittimelimit'] == 0
			)
		))
I think this code is used to decide if the "Edit" button should be shown. Wouldn't that be OK in our case?

I am not trying to be a smart-a**, just trying to help here, with my limited knowledge.

Again, I have to thank you for paying attention to my requests.

Rgds

P.S. (later this evening): No matter what I tried, I cannot make the QE show me the Delete post part, if the post is the first post in the thread. I guess this is beyong my abilities. You are my only solution.

Rgds
Reply With Quote
  #196  
Old 07-28-2004, 01:22 AM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

John,
I have it working on my forum (even in the first post) using this code:

In functions_showthread.php find and delete the old code you added.

Now find this:
Code:
// Quick Edit hack
Below it add this:
Code:
$forumperms = fetch_permissions($thread['forumid']);

	// find out if first post
	$getpost = $DB_site->query_first("
		SELECT postid
		FROM " . TABLE_PREFIX . "post
		WHERE threadid=$thread[threadid]
		ORDER BY dateline
		LIMIT 1
	");
	if ($getpost['postid'] == $post['postid'])
	{
		$isfirstpost = true;
	}
	else
	{
		$isfirstpost = false;
	}



	if ($isfirstpost AND can_moderate($thread['forumid'], 'canmanagethreads'))
	{
		$show['deletepostoption'] = true;
	}
	else if (!$isfirstpost AND can_moderate($thread['forumid'], 'candeleteposts'))
	{
		$show['deletepostoption'] = true;
	}
	else if (((($forumperms & CANDELETEPOST) AND !$isfirstpost) OR (($forumperms & CANDELETETHREAD) AND $isfirstpost)) AND $bbuserinfo['userid'] == $post['userid'])
	{
		$show['deletepostoption'] = true;
	}
	else
	{
		$show['deletepostoption'] = false;
	}
Use this for the showthread_quickedit template:
Code:
			<span id="quickedit_$post[postid]">
				<img src="$stylevar[imgdir_button]/quickedit_icon.gif" alt="Quick Edit" border="0" />
				<script type="text/javascript"> vbmenu_register("quickedit_$post[postid]", true); </script>
			</span>
<div id="quickedit_$post[postid]_menu" style="display:none">
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="left">
<form enctype="multipart/form-data" name="vbulletinform" style="display:inline;" action="editpost.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updatepost" />
<input type="hidden" name="p" value="$post[postid]" />
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
<input type="hidden" name="emailupdate" value="9999" />
<input type="hidden" name="disablesmilies" value="0" />
<input type="hidden" name="parseurl" value="1" id="cb_parseurl" />
<input type="hidden" name="iconid" value="$post[iconid]" />	
<tr>
<td class="tcat" align="left">
<strong>$vbphrase[edit_post]</strong>
</td>
</tr>
<tbody>
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="left">
	<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
	 <div>$vbphrase[title]:</div>
	 <div><input type="text" class="bginput" name="title" value="$post[title]" size="60" maxlength="85" tabindex="1" /></div>
	</div>
	<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
	 <div>$vbphrase[message]:</div>
	 <div><textarea name="message" class="bginput" style="width:433px; height:125px;" wrap="virtual" tabindex="1">$edittext</textarea></div>
	</div>
</div>
</div>
<div style="margin-top:6px">
	<input type="submit" class="button" name="sbutton" value="Save Changes" accesskey="s" tabindex="1" />
	<input type="submit" class="button" name="preview" value="Preview Changes" accesskey="p" tabindex="1" />

	 <if condition="$bbuserinfo['signature'] != ''"><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" checked /><span class="smallfont">Signature</span></label></if>
</div>
</td>
</tr>
</tbody>
</form>
<if condition="$show['deletepostoption']">
<br />
<form action="editpost.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="p" value="$post[postid]" />
<input type="hidden" name="do" value="deletepost" />

<tr>
	<td class="tcat" align="left">

		$vbphrase[delete_this_message]
	</td>
</tr>
<tbody id="collapseobj_editpost_delete" style="$vbcollapse[collapseobj_editpost_delete]">
	<tr>
		<td class="panelsurround" align="center">
		<div class="panel">
			<div style="width:65" align="$stylevar[left]">
			
			<div class="fieldset">
				<div>$vbphrase[delete_message_check_appropriate_option]</div>
				<if condition="$show['firstpostnote']">
					<div>$vbphrase[deleting_message_deletion_of_thread]</div>
				</if>
			</div>
			
			<fieldset class="fieldset">
				<legend>$vbphrase[delete_options]</legend>
				<div style="padding:$stylevar[formspacer]px">
					<div>
						<label for="rb_del_leave"><input type="radio" name="deletepost" value="" id="rb_del_leave" tabindex="1" checked="checked" />$vbphrase[do_not_delete_message]</label>
					</div>
					<div>
						<label for="rb_del_soft"><input type="radio" name="deletepost" value="delete" id="rb_del_soft" tabindex="1" />$vbphrase[delete_message]</label>
						<if condition="$show['physicaldeleteoption'] AND $show['keepattachmentsoption']">(<label for="cb_keepattachments"><input type="checkbox" name="keepattachments" value="1" id="cb_keepattachments" tabindex="1" />$vbphrase[keep_attachments]</label>)</if>
					</div>
					<if condition="$show['physicaldeleteoption']">
					<div>
						<label for="rb_del_hard"><input type="radio" name="deletepost" value="remove" id="rb_del_hard" tabindex="1" />$vbphrase[physically_remove_message]</label>
					</div>
					</if>
				</div>
			</fieldset>
			
			<div class="smallfont">
				<div>$vbphrase[reason_for_deletion]:</div>
				<input type="text" class="bginput" name="reason" size="50" tabindex="1" title="$vbphrase[optional]" />
			</div>
			
			</div>
		</div>
		
		<div style="margin-top:$stylevar[cellpadding]px">
			<input type="submit" class="button" value="$vbphrase[delete_this_message]" tabindex="1" accesskey="s" />
		</div>
		
		</td>
	</tr>
</tbody>
</form>
</if>
</table>
</div>
Quote:
As I said, I am no php expert, but a little further up in that file, there is this code:

I am not trying to be a smart-a**, just trying to help here, with my limited knowledge.
No worries. I'm no php guru either. I just tinker with the code until it does what I want. Great way to learn IMO.
Reply With Quote
  #197  
Old 07-28-2004, 05:30 AM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Dewayne,

Great, that did it. One small problem, it breaks the PM system, when you try to view a PM. We need to have that part of the code, work only in showthreads and not in ... showPM (that doesn't exist obviously, just joking).

What happens is that when a user tries to see one of the PMs in his inbox, the query is run and he gets the following error:

Database error in vBulletin 3.0.1:

Invalid SQL:
SELECT postid
FROM post
WHERE threadid=
ORDER BY dateline
LIMIT 1

mysql error: You have an error in your SQL syntax near 'ORDER BY dateline
LIMIT 1
' at line 5

mysql error number: 1064

Date: Wednesday 28th of July 2004 02:19:04 AM
Script: http://forum.m1911.org/private.php?do=showpm&pmid=733
Referer: http://forum.m1911.org/private.php?
Username: John
IP Address:

Here is what I found:

Replace the QE code in includes/function_showthread.php, with the one below:

PHP Code:
        // Quick Edit hack
        
if (THIS_SCRIPT=='showthread' AND $post['editlink'] AND $bbuserinfo[userid]>0)
        {
    
$forumperms fetch_permissions($thread['forumid']);
    
        
// find out if first post
        
$getpost $DB_site->query_first("
            SELECT postid
            FROM " 
TABLE_PREFIX "post
            WHERE threadid=
$thread[threadid]
            ORDER BY dateline
            LIMIT 1
        "
);
        if (
$getpost['postid'] == $post['postid'])
        {
            
$isfirstpost true;
        }
        else
        {
            
$isfirstpost false;
        }
    
    
        if (
$isfirstpost AND can_moderate($thread['forumid'], 'canmanagethreads'))
        {
            
$show['deletepostoption'] = true;
        }
        else if (!
$isfirstpost AND can_moderate($thread['forumid'], 'candeleteposts'))
        {
            
$show['deletepostoption'] = true;
        }
        else if ((((
$forumperms CANDELETEPOST) AND !$isfirstpost) OR (($forumperms CANDELETETHREAD) AND $isfirstpost)) AND $bbuserinfo['userid'] == $post['userid'])
        {
            
$show['deletepostoption'] = true;
        }
        else
        {
            
$show['deletepostoption'] = false;
        }
        
                if (
$post['userid'] == $bbuserinfo['userid'])
            {
                
$edittext htmlspecialchars_uni($post['pagetext']);
                eval(
'$quickedit = "' fetch_template('showthread_quickedit') . '";');
            } 
            else 
            {
                
$edittext="";
                
$quickedit="";
            }
    }
        
// End Quick Edit hack 
With this if in the beginning, it works fine.

Below is my version of the showthread_quickedit template. I've made it a bit cramped, so that it is indeed a QUICK edit. It includes the editing and the deleting function.

HTML Code:
<span id="quickedit_$post[postid]">
				<img src="$stylevar[imgdir_button]/quickedit_icon.gif" alt="Quick Edit" border="0" />
				<script type="text/javascript"> vbmenu_register("quickedit_$post[postid]", true); </script>
			</span>
<div id="quickedit_$post[postid]_menu" style="display:none">
<form enctype="multipart/form-data" name="vbulletinform" style="display:inline;" action="editpost.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updatepost" />
<input type="hidden" name="p" value="$post[postid]" />
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
<input type="hidden" name="emailupdate" value="9999" />
<input type="hidden" name="disablesmilies" value="0" />
<input type="hidden" name="parseurl" value="1" id="cb_parseurl" />
<input type="hidden" name="iconid" value="$post[iconid]" />	
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="left" bgcolor="#D6DAE5">
<tr>
<td bgcolor="#3A5383" align="left">
<TABLE width="100%">
<TR>
<TD align="left"><font color="#ffffff">
$vbphrase[edit_post]</FONT>
</TD>
<TD align="right"><font color="#ffffff">
<div class="smallfont" align="right">Click anywhere outside this box, to cancel editing.</DIV></FONT>
</TD>
</TR>
</TABLE>
</td>
</tr>
<tbody> 
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="left">
	<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
	 <div>$vbphrase[reason_for_editing]:</div>
	 <div><input type="text" class="bginput" name="reason" value="$newpost[reason]" size="50" maxlength="200" tabindex="1" title="$vbphrase[optional]" /><input type="hidden" name="reason_exists" value="$edit[reason_exists]" /></div>
	</div>
	<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
	 <div>New $vbphrase[title]:</div>
	 <div><input type="text" class="bginput" name="title" value="$post[title]" size="50" maxlength="85" tabindex="1" /></div>
	</div>
	<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
	 <div>$vbphrase[message]:</div>
	 <div><textarea name="message" class="bginput" style="width:470px; height:125px;" wrap="virtual" tabindex="1">$edittext</textarea></div>
	</div>
</div>
</div>
<TABLE width="100%">
<TR>
<TD ALIGN="LEFT">
	 <if condition="$bbuserinfo['signature'] != ''">
	<input type="checkbox" name="signature" value="1" checked /><span class="smallfont">Signature</span></if>
</TD>
<TD ALIGN="RIGHT">
<input type="submit" class="button" name="sbutton" value="Save Changes" accesskey="s" tabindex="1" />
</TD>
</TR>
</TABLE>
</td>
</tr>
</tbody>
</form>
<if condition="$show['deletepostoption']">

<form action="editpost.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="p" value="$post[postid]" />
<input type="hidden" name="do" value="deletepost" />

<tr>
	<td bgcolor="#3A5383" align="left">
		<font color="#ffffff">$vbphrase[delete_this_message]</font>
	</td>
</tr>
<tbody id="collapseobj_editpost_delete" style="$vbcollapse[collapseobj_editpost_delete]">
	<tr>
		<td class="panelsurround" align="center">
		<div class="panel">
			<div align="$stylevar[left]">
			<div class="fieldset"> 
	$vbphrase[delete_message_check_appropriate_option]&nbsp;

				<if condition="$isfirstpost">
					$vbphrase[deleting_message_deletion_of_thread]
				</if>
			</div>
	
			<fieldset class="fieldset">
				<legend>$vbphrase[delete_options]</legend>
				<div style="padding:$stylevar[formspacer]px">
					<div>
						<label for="rb_del_leave"><input type="radio" name="deletepost" value="" id="rb_del_leave" tabindex="1" checked="checked" />$vbphrase[do_not_delete_message]</label>
					</div>
					<div>
						<label for="rb_del_soft"><input type="radio" name="deletepost" value="delete" id="rb_del_soft" tabindex="1" />$vbphrase[delete_message]</label>
						<if condition="$show['physicaldeleteoption'] AND $show['keepattachmentsoption']">(<label for="cb_keepattachments"><input type="checkbox" name="keepattachments" value="1" id="cb_keepattachments" tabindex="1" />$vbphrase[keep_attachments]</label>)</if>
					</div>
					<if condition="$show['physicaldeleteoption']">
					<div>
						<label for="rb_del_hard"><input type="radio" name="deletepost" value="remove" id="rb_del_hard" tabindex="1" />$vbphrase[physically_remove_message]</label>
					</div>
					</if>
				</div>
			</fieldset>
			
			<div class="smallfont">
				<div>$vbphrase[reason_for_deletion]:</div>
				<input type="text" class="bginput" name="reason" size="50" tabindex="1" title="$vbphrase[optional]" />
			</div>
			
			</div>
		</div>
<TABLE width="100%">
<TR>
<TD ALIGN="LEFT">
<div class="smallfont">Click anywhere outside this box, to cancel editing.</div>
</TD>
<TD ALIGN="RIGHT">
<input type="submit" class="button" value="$vbphrase[delete_this_message]" tabindex="1" accesskey="s" />
</TD>
</TR>
</TABLE>
</td>
</tr>
</tbody>
</form>
</if>
</table>
</div>
Maybe this helps some other folks here.

Rgds
Reply With Quote
  #198  
Old 07-28-2004, 06:40 PM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice job sv1cec ! I added a link to your post so that others can add your mod.
Reply With Quote
  #199  
Old 08-13-2004, 02:12 AM
Battle_Ring Battle_Ring is offline
 
Join Date: Apr 2004
Posts: 584
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

not sure if this has been asked, but can u make it where it shows on everypost for Moderators and Admins? so we can edit someones post quickly?
Reply With Quote
  #200  
Old 08-13-2004, 05:36 AM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Battle_Ring
not sure if this has been asked, but can u make it where it shows on everypost for Moderators and Admins? so we can edit someones post quickly?
You could, but then you are slowing your system down a lot, because each post has to be read twice (or something like that).

Rgds
Reply With Quote
  #201  
Old 09-09-2004, 12:22 PM
Rich's Avatar
Rich Rich is offline
 
Join Date: Mar 2004
Location: U.S.A
Posts: 921
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,
I never add much to the site,but I read from here frequently. I too created a button that matches my site and figured I would add it here for anyone to use. Opposed to adding transparency to the outer edges of the buttons,I just filled the color with the color I am using on my site. It appears as if it came with the program.
To make this appear as mine does in the screen shot, just fill the outside color with the color of your forum,or add transparency.
Ok,I have finally added something. lol






Reply With Quote
Reply


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 04:03 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04826 seconds
  • Memory Usage 2,409KB
  • Queries Executed 27 (?)
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
  • (4)bbcode_code
  • (3)bbcode_html
  • (1)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete