vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=229)
-   -   Show Thread Enhancements - Force Signature to the Bottom (https://vborg.vbsupport.ru/showthread.php?t=174285)

dancue 03-26-2008 10:00 PM

Force Signature to the Bottom
 
Here is a small contribution to this community.

I noticed that this template modification was available for 3.0 and 3.5, but not for 3.7.

Credits:
Was motivated by the original hack, created by Brad.


What does it do?

It will allow you to place the signature at the very bottom of the post.

What's the difference between this and the previous versions?
  • The table area for the signature will shrink to fit the signature. This will avoid the bottom table from directly following the end of a post.
  • The edited note has been moved to the absolute bottom. (On past versions they have showed directly after the post, before the sig.)

Versions tested and working on:
  • 3.7.0

Notes:
  • This is ONLY for postbit_legacy users.
  • Those with very customized templates may reply to this thread or pm me for a different code. Please make a copy of your postbit_legacy before altering it.
  • Support is offered to the best of my ability and when time permits.
  • I will only offer support to those who have clicked install.

Installation:

Find in postbit_legacy template:
Code:

        <td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
replace with:
Code:

        <td class="alt2" width="175" rowspan="2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
Find in postbit legacy template:
Code:

                <if condition="$post['signature']">
                <!-- sig -->
                        <div>
                                __________________<br />
                                $post[signature]
                        </div>
                <!-- / sig -->
                </if>

                $template_hook[postbit_signature_end]

                <if condition="$show['postedited']">
                <!-- edit note -->
                        <div class="smallfont">
                                <hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
                                <em>
                                        <if condition="$show['postedithistory']">
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>.
                                        <else />
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                                        </if>
                                        <if condition="$post['edit_reason']">
                                                $vbphrase[reason]: $post[edit_reason]
                                        </if>
                                </em>
                        </div>
                <!-- / edit note -->
                </if>

        </td>
</tr>

Replace with:
Code:

<tr>
<td class="alt2" valign="bottom" height="100%"style="border-right: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
                $template_hook[postbit_signature_start]
                <if condition="$post['signature']">
                                <!-- sig -->
                        <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                        <div valign="bottom">
                                $post[signature]
                        </div>
                <!-- / sig -->

                </if>
                $template_hook[postbit_signature_end]
                <if condition="$show['postedited']">
                <!-- edit note -->
                        <div class="smallfont">
                                <hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
                                <em>
                                        <if condition="$show['postedithistory']">
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>.
                                        <else />
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                                        </if>
                                        <if condition="$post['edit_reason']">
                                                $vbphrase[reason]: $post[edit_reason]
                                        </if>
                                </em>
                        </div>
                <!-- / edit note -->
                </if>

                </td>
</tr>


bxbigt 03-27-2008 11:10 AM

Thanks Man :)

dancue 03-27-2008 12:02 PM

No problem.

Tom_S 03-30-2008 03:31 AM

Hmmm... I don't have that line:
Quote:

<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
I'm running 3.7.0 RC1 Ideas?

Thanks in advance

EDIT:
I lost that line because of another mod but after looking at the default I learned that is line 27 so I just added it there anyway and modified it as it was. It didn't however work for me. The signature remains as it was. :(

Tom_S 03-30-2008 04:25 AM

Little tinkering an walla..no problemo ;)

Rat1972 03-30-2008 12:46 PM

I have a white stripe in the middle of the posts? Is there a sollution to let it disapear?

tiekie 03-30-2008 12:46 PM

Great mod ... I will get it installed a.s.a.p

dancue 03-30-2008 03:42 PM

Quote:

Originally Posted by Tom_S (Post 1478084)
Little tinkering an walla..no problemo ;)

I'm glad you figured it out. Sorry I didn't get to you sooner. Forgot to setup pm alerts to new replies...:)

Quote:

Originally Posted by Rat1972 (Post 1478266)
I have a white stripe in the middle of the posts? Is there a sollution to let it disapear?

It has to do with the cellspacing. Refer to this post. See if that works. Personally, I like the line there, so I will not be making the change.

Quote:

Originally Posted by tiekie (Post 1478267)
Great mod ... I will get it installed a.s.a.p

Cool. Glad you liked it.

dancue 03-30-2008 03:50 PM

Ok. None of you hit the installed button...

Doesn't take long to do it.

Tianuc 03-30-2008 10:40 PM

I have a question.
The article content is different from signature color

Please see the attachment.

MR-2ZZ 03-31-2008 12:38 AM

<a href="https://vborg.vbsupport.ru/showthread.php?t=128951&highlight=force+bottom" target="_blank">https://vborg.vbsupport.ru/showt...t=force+bottom</a>

That one works.

Gosef 03-31-2008 02:30 AM

thanks a lot

dancue 03-31-2008 07:52 PM

Quote:

Originally Posted by Tianuc (Post 1478640)
I have a question.
The article content is different from signature color

Please see the attachment.

Easy fix. Mark as Installed and I'll tell you what to do.

dancue 03-31-2008 07:57 PM

Quote:

Originally Posted by MR-2ZZ (Post 1478730)

That will work also. Like I said on my first post though....this one will not follow the post immediately like the other one does. It also moves the "edited by" note to the bottom of the sig, instead of the bottom of the post.

TTG 03-31-2008 08:17 PM

Quote:

Originally Posted by dancue (Post 1479372)
Easy fix. Mark as Installed and I'll tell you what to do.

Already changed that "Easy fix" 'cos I prefer postbit to remain one colour .. clicked install. :up:

Tom_S 03-31-2008 09:02 PM

Quote:

Originally Posted by dancue (Post 1478406)
Ok. None of you hit the installed button...

Doesn't take long to do it.

Sorry bout that. Got it ;)

dancue 03-31-2008 09:31 PM

Quote:

Originally Posted by Tom_S (Post 1479434)
Sorry bout that. Got it ;)

Thanks man!:)

GrendelKhan{TSU 04-01-2008 05:46 AM

yay! thanks! :D

yaoren 04-22-2008 03:30 PM

I clicked in install and would like to change the sig bg color to match the post bg color please :)

dancue 04-24-2008 12:55 AM

The post bg color should either be alt1 or alt2. If you installed the code provided here and it did not match then you would have to do the following:

Code:

<tr>
<td class="alt1" valign="bottom" height="100%"style="border-right: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
                $template_hook[postbit_signature_start]
                <if condition="$post['signature']">
                                <!-- sig -->
                        <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                        <div valign="bottom">
                                $post[signature]
                        </div>
                <!-- / sig -->

                </if>
                $template_hook[postbit_signature_end]
                <if condition="$show['postedited']">
                <!-- edit note -->
                        <div class="smallfont">
                                <hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
                                <em>
                                        <if condition="$show['postedithistory']">
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>.
                                        <else />
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                                        </if>
                                        <if condition="$post['edit_reason']">
                                                $vbphrase[reason]: $post[edit_reason]
                                        </if>
                                </em>
                        </div>
                <!-- / edit note -->
                </if>

                </td>
</tr>

I've highlighted the change in red. This change is replacing the last step mentioned above in my first post.

Hope this helps.

yaoren 04-27-2008 04:19 PM

Worked perfectly, thanks!

Wheezy 05-03-2008 02:44 AM

I cannot get this to work. I have a custom skin downloaded on my vB 3.7 so I think those templates are interfering with this code. Can someone help me out?

*EDITED CODE OUT*

Also... is there a way to extend the signature line to extend across the entire post? THANKS!!!

dancue 05-03-2008 03:28 AM

Can you copy your postbit_legacy template and pm it to me? I'd like to take a look at it.

UberDoober 05-03-2008 04:08 PM

Clicked "Installed" !

I love you, man! Ugraded to 3.7.0 Gold from 3.6.8PL2 and didn't revert my 3.6.8 template. Noticed that "edited by" only showed up on users with no signatures so had to bite the bullet and revert and modify the new one. I'm a noob at this and it scared me to death but all is well! Job Done!

Cheers! Thank you!

dancue 05-04-2008 12:48 PM

Wheezy, I sent it back to you. Let me know if it works.

Uber,
Your welcome. Thanks for the support.

crashys 05-07-2008 08:19 PM

I have a question regarding postbit legacy, can anyone give some help?

https://vborg.vbsupport.ru/showthrea...63#post1508063

Thanks in advance.

Goomzee 05-08-2008 04:58 AM

Any screen shot

Vinyljunky 05-13-2008 09:40 AM

Quote:

Originally Posted by dancue (Post 1497768)
The post bg color should either be alt1 or alt2. If you installed the code provided here and it did not match then you would have to do the following:

Code:

<tr>
<td class="alt1" valign="bottom" height="100%"style="border-right: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
                $template_hook[postbit_signature_start]
                <if condition="$post['signature']">
                                <!-- sig -->
                        <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                        <div valign="bottom">
                                $post[signature]
                        </div>
                <!-- / sig -->

                </if>
                $template_hook[postbit_signature_end]
                <if condition="$show['postedited']">
                <!-- edit note -->
                        <div class="smallfont">
                                <hr size="1" style="color:$stylevar[tborder_bgcolor]; background-color:$stylevar[tborder_bgcolor]" />
                                <em>
                                        <if condition="$show['postedithistory']">
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]" 4="posthistory.php?$session[sessionurl]p=$post[postid]">$vbphrase[last_edited_link_by_x_on_y_at_z_postid]</phrase>.
                                        <else />
                                                <phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
                                        </if>
                                        <if condition="$post['edit_reason']">
                                                $vbphrase[reason]: $post[edit_reason]
                                        </if>
                                </em>
                        </div>
                <!-- / edit note -->
                </if>

                </td>
</tr>

I've highlighted the change in red. This change is replacing the last step mentioned above in my first post.

Hope this helps.

Brilliant :up:

crashys 05-15-2008 07:51 PM

Quote:

Originally Posted by crashys (Post 1511997)
I have a question regarding postbit legacy, can anyone give some help?

https://vborg.vbsupport.ru/showthrea...63#post1508063

Thanks in advance.

Anyone?

dancue 05-15-2008 08:35 PM

Sorry, haven't really tried to do that before.

crashys 05-15-2008 09:34 PM

Quote:

Originally Posted by dancue (Post 1521018)
Sorry, haven't really tried to do that before.

Hmm okay, thanks anyway.

siNix 05-17-2008 02:02 PM

Hi, it works good! my question is: How can i change the colour and the size of the tekst inside the signiture? expample : see attchement

hilfe-forum 05-17-2008 04:59 PM

Luv it:up:

dancue 05-18-2008 02:50 AM

Quote:

Originally Posted by siNix (Post 1522599)
Hi, it works good! my question is: How can i change the colour and the size of the tekst inside the signiture? expample : see attchement

click on install

siNix 05-18-2008 09:11 AM

Dancue, i clicked on the instal button. do you have the anwser to my question ? :) if its possible also the colour of the text :)

dancue 05-18-2008 11:56 AM

The color and size of text in a signature is determined by the user who is creating his signature.

If you are wanting to change the default, that is different. I haven't done that myself. In fact, those who do not create their own signature, simply do not have one.

Do you have it set to give the user a saying automatically? Is that another hack?

Subah 05-21-2008 10:32 PM

Great mod , thanks a lot :)

Subah 05-22-2008 10:38 PM

I don`t find:
Code:

<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
this is my hole postbit legacy code:

Code:

<!-- post #$post[postid] -->
<if condition="$show['spacer']">
        $spacer_open
        <if condition="!$post['islastshown']">
                <div style="padding:0px 0px $stylevar[cellpadding]px 0px">
        <else />
        <if condition="$post['toppadding']">
                <div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
        </if>
        </if>
        <div id="edit$post[postid]">
</if>

<table id="post$post[postid]" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <if condition="$show['announcement']">
                <td class="thead" style="font-weight:normal" colspan="2">
                        <img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" />
                        <phrase 1="$post[startdate]" 2="$post[enddate]">$vbphrase[x_until_y]</phrase>
                </td>
        <else />
                <td class="thead" style="font-weight:normal" $post[scrolltothis]>               
                        <!-- status icon and date -->
                        <a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" /></a>
                        $post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if>
                        $post[firstnewinsert]
                        <!-- / status icon and date -->                               
                </td>
                <td class="thead" style="font-weight:normal" align="$stylevar[right]">
                        &nbsp;
                        <if condition="$show['postcount']">رقم المشاركة : <a href="showpost.php?$session[sessionurl]p=$post[postid]&amp;postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a></if>
                        <if condition="$show['inlinemod']">
                                <input type="checkbox" name="plist[$postid]" id="plist_$postid" style="vertical-align:middle; padding:0px; margin:0px 0px 0px 5px" value="$post[checkbox_value]" onclick="inlineMod.toggle(this)" />
                        </if>
                </td>
        </if>
</tr>
<tr valign="top">
        <td class="alt2" width="175">
                       
                        <div align="center" id="postmenu_$post[postid]">
                                <if condition="$show['profile']">
                                <a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]" style="text-decoration: none; ">
                <font size="4">$post[musername]</font></a>
                                <script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
                                <else />
                                $post[musername]
                                </if>
                       
                        <if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
                        <if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if> 
</div>
 
  <if condition="$show['avatar']">
    <div align="center" class="smallfont">
    &nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
    </div>
  </if>
                          <div align="center"> <if condition="$post['isstaffrank']">
                                        <div class="smallfont">
                                        <if condition="$post['staffrank_opentag']">$post[staffrank_opentag]</if>
                                                <if condition="$post['staffrank']">$post[staffrank]</if>
                                        <if condition="$post['staffrank_closetag']">$post[staffrank_closetag]</if>
                                        </div>
                                </if>
                        </div>
<p align="center"><if condition="$post['joindate']">
</if><if condition="$post['joindate']">
<input type="text" name="Date" size="24" dir="rtl" value="الانتساب : $post[joindate]" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"></if><if condition="$post['joindate']"></if><if condition="$post['joindate']"><br></if>
<input type="text" name="Number1" size="24" dir="rtl" value="رقم العضوية : $post[userid]" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"><if condition="$post['joindate']"></if><br>
<if condition="$post[field2]">
</if><if condition="$post[field2]">
<input type="text" name="City" size="24" dir="rtl" value="الإقامة : $post[field2]" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"></if><if condition="$post[field2]"><br></if>
<input type="text" name="Cuantity" size="24" dir="rtl" value="المشاركات : $post[posts]" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"><if condition="$post[field2]"></if><br>
<if condition="$post['age']">
</if>
<input type="text" name="Every_day" size="24" dir="rtl" value="بمعدل : $post[postsperday] يومياً" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"><if condition="$post['age']"><br>
</if><if condition="$post['age']">
<input type="text" name="age" size="24" dir="rtl" value="$vbphrase[age]: $post[age]" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"></if><if condition="$post['age']"></if><br>
<input type="text" name="Number" size="24" dir="rtl" value="عدد النقاط : $post[reputation]" style="border:1px solid; font-family:MS Sans Serif; font-size:10px; vertical-align:middle; letter-spacing:0;; padding-left:4px; padding-right:4px; padding-top:1px; padding-bottom:1px;"></p>
<p align="center">   
</p>
  <div class="smallfont">
    <p align="center">
<if condition="$post[field5]">$vbphrase[gender]: <img src="$stylevar[imgdir_misc]/$post[field5].gif" alt="$post[field5]" /></if>
</div>
  <div class="smallfont">
    <p align="center">
</div>
<p align="center">$post[onlinestatus]<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber1">
  <tr>
    <td width="100%">
    $post[reputationdisplay]
    </td>
  </tr>
</table>
      <p align="center">$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
                        </div>
                        </div>                                       
<!-- show awards -->
<if condition="$post[showuserawards]">
<fieldset><legend><a href="member.php?u=$post[userid]#award" title="$vbphrase[more_awards]">$vbphrase[award_showcase]</a></legend>
<div>
$post[userawards]
<br>
<a href="member.php?u=$post[userid]#award" title="$vbphrase[more_awards]">$vbphrase[total_awards]</a>: $post[num_awards]
</div></if>
        </td>
        <if condition="$show['moderated']">
        <td class="alt2" id="td_post_$post[postid]">
        <else />
        <td class="alt1" id="td_post_$post[postid]">
        </if>
       
                <if condition="$show['messageicon'] OR $post['title']">
                        <!-- icon and title -->
                        <div class="smallfont">
                                <if condition="$show['messageicon']"><img class="inlineimg" src="$post[iconpath]" alt="$post[icontitle]" border="0" /></if>
                                <if condition="$post['title']"><strong>$post[title]</strong></if>
                        </div>
                        <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                        <!-- / icon and title -->
                </if>
                <!-- message -->
                <div>
                <table border="0" width="100%" id="table4" cellspacing="3" cellpadding="3" height="250">
                        <tr>
                                <td valign="top">
                <!-- / message -->
        <p align="center">
        <font face="Arial">
        <span style="font-size: 12pt; font-weight:700">$post[message]</span></font></td>
                        </tr>
                        </table>
                    </div>
                <!-- / message -->
                <br />
        <br />
        <br />
        <br />
        <br />
        <br />
                <if condition="$show['attachments']">
                <!-- attachments -->
                        <div style="padding:$stylevar[cellpadding]px">
                       
                        <if condition="$show['thumbnailattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_thumbnails]</legend>
                                        <div style="padding:$stylevar[formspacer]px">
                                        $post[thumbnailattachments]
                                        </div>
                                </fieldset>
                        </if>
               
                        <if condition="$show['imageattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_images]</legend>
                                        <div style="padding:$stylevar[formspacer]px">
                                        $post[imageattachments]
                                        </div>
                                </fieldset>
                        </if>
                       
                        <if condition="$show['imageattachmentlink']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_images]</legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                        $post[imageattachmentlinks]
                                        </table>
                                        </fieldset>
                        </if>
                       
                        <if condition="$show['otherattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attached_files]</legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" id="table8">
                                        $post[otherattachments]
                                        </table>
                                </fieldset>
                        </if>
                       
                        <if condition="$show['otherattachment']">
                                <fieldset class="fieldset">
                                        <legend><font color="#FF0000">نصائح مهمه</font></legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" id="table9" height="88">
                                        <tr>
                                                <td height="57">1- أفحص الملف المرفق بأي برنامج مضاد للفيروسات<br>
                                                2-<span lang="en-us"> </span>قم بمراسلة المراقب عن أي
                                                مرفق يوجد به فيروس<br>
                                                3-<span lang="en-us"> </span>ادارة المنتدى غير مسوؤلة عن
                                                مايحتويه المرفق من بيانات</td>
                                        </tr>
                                        <tr>
                                                <td>
                                                        <p align="center">
                                                        <if condition="$show['reportlink']">       
                                                        <a href="$vboptions[contactuslink]">
                                                        <img border="0" src="images/report.gif" width="50" height="15" alt="::+: أرسل تبليغ عن وجود فيروس :+::"></a></if></td>
                                        </tr>
                                        </table>
                                </fieldset>
                        </if>
                       
                        <if condition="$show['otherattachment']">
                        </if><if condition="$show['imageattachmentlink']">
                        </if>
                       
                        <if condition="$show['moderatedattachment']">
                                <fieldset class="fieldset">
                                        <legend>$vbphrase[attachments_pending_approval]</legend>
                                        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                                        $post[moderatedattachments]
                                        </table>
                                </fieldset>               
                        </if>
                       
                        </div>
                <!-- / attachments -->
                </if>
                <if condition="$post['signature']">
<!-- sig -->
<div>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="center" width="100%">$vbphrase[signature]</td>
</tr>
<tr>
<td class="alt1" title="$vbphrase[signature]" align="center" width="100%">
<p align="center">$post[signature]</td>
</tr>
</table>
</div>
<!-- / sig -->
<div>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>

</tr>
<tr>
<td class="alt1" title="$vbphrase[signature]" align="center" width="100%">
</td>
</tr>
</table>
</div>
                </if>
                <if condition="$show['postedited']">
                <!-- edit note -->
        <div class="smallfont" align=center>آخر تعديل $post[edit_username] يوم      $post[edit_date] في <span class="time">$post[edit_time]</span>. <if condition="$post[edit_reason]"><br>
                &nbsp;</if></div>
                <!-- / edit note -->
                </if>
       
        </td>
</tr>
<tr>
        <td class="alt2">
                &nbsp;<if condition="$show['reputationlink']"><span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
                        <if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>
                </if>                               
                <if condition="$show['infractionlink']"><a href="infraction.php?$session[sessionurl]do=report&amp;p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/infraction.gif" alt="<phrase 1="$post[username]">$vbphrase[add_infraction_for_x]</phrase>" border="0" /></a> &nbsp;</if>
                <if condition="$show['reportlink']"><a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a></if>
                $post[iplogged]
                &nbsp;
        </td>
        <if condition="$show['moderated']">
        <td class="alt2" align="$stylevar[right]">
        <else />
        <td class="alt1" align="$stylevar[right]">
        </if>
                <!-- controls -->
                <if condition="$post['editlink']">
                        <img style="display: none" id="progress_$postid" src="$stylevar[imgdir_misc]/progress.gif" alt="$vbphrase[loading_editor_please_wait]" />
                        <a href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
                </if>
                <if condition="$post['forwardlink']">
                        <a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
                </if>
                <if condition="$post['replylink']">
                        <a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
                </if>
                <if condition="$show['multiquote_post']">
                        <a href="$post[replylink]" rel="nofollow" onclick="return false"><img src="$stylevar[imgdir_button]/multiquote_<if condition="$show['multiquote_selected']">on<else />off</if>.gif" alt="$vbphrase[multi_quote_this_message]" border="0" id="mq_$post[postid]" /></a>
                </if>
                <if condition="$show['quickreply'] AND !$show['threadedmode']">
                        <a href="$post[replylink]" rel="nofollow" id="qr_$post[postid]" onclick="return false"><img src="$stylevar[imgdir_button]/quickreply.gif" alt="$vbphrase[quick_reply_to_this_message]" border="0" /></a>
                </if>
                <if condition="$show['moderated']">
                        <img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" />
                </if>
                <if condition="$show['deletedpost']">
                        <img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[deleted_post]" border="0" />
                </if>
                <if condition="$show['redcard']">
                        <a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/redcard.gif" alt="$vbphrase[received_infraction]" border="0" /></a>
                <else />
                        <if condition="$show['yellowcard']">
                                <a href="infraction.php?$session[sessionurl]do=view&amp;p=$post[postid]"><img src="$stylevar[imgdir_button]/yellowcard.gif" alt="$vbphrase[received_warning]" border="0" /></a>
                </if>
                        </if>
                <!-- / controls -->
        </td>
</tr>
</table>

<!-- post $post[postid] popup menu -->
<div class="vbmenu_popup" id="postmenu_$post[postid]_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
                <td class="thead">$post[username]</td>
        </tr>
        <if condition="$show['profile']">
                <tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$post[userid]">$vbphrase[view_public_profile]</a></td></tr>
        </if>
        <if condition="$show['pmlink']">
                <tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]do=newpm&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[send_private_message_to_x]</phrase></a></td></tr>
        </if>
        <if condition="$show['emaillink']">
                <tr><td class="vbmenu_option"><a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[send_email_to_x]</phrase></a></td></tr>
        </if>
        <if condition="$show['homepage']">
                <tr><td class="vbmenu_option"><a href="$post[homepage]"><phrase 1="$post[username]">$vbphrase[visit_xs_homepage]</phrase></a></td></tr>
        </if>
        <if condition="$show['search']">
                <tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">$vbphrase[find_more_posts_by_x]</phrase></a></td></tr>
        </if>
        <if condition="$post['userid'] AND $show['member']">
        <tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
        </if>
        </table>
</div>
<!-- / post $post[postid] popup menu -->

<if condition="$show['spacer']"></div><if condition="!$post['islastshown']"></div></if>
        $spacer_close</if>
<!-- / post #$post[postid] -->


Subah 05-24-2008 04:32 AM

Hello !!

dancue 05-24-2008 01:52 PM

Hi !!


All times are GMT. The time now is 06:07 AM.

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.01617 seconds
  • Memory Usage 2,033KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete