Page 2 of 2

Re: [Alpha] - Very Small Quick Reyly

Posted: Sun Oct 07, 2007 11:22 pm
by johnfosteruk
anyone?

Re: [Alpha] - Very Small Quick Reyly

Posted: Mon Oct 08, 2007 7:09 am
by igorw
Hi,

i have a suggestion for your MOD. You should use <!-- INCLUDE -->, like that it's much easier to update to a newer version ;)

Re: [Alpha] - Very Small Quick Reyly

Posted: Mon Oct 08, 2007 11:47 am
by johnfosteruk
not my mod mate. I'm just being a lazy git using the quick/slick/simple ones :lol:
taken on board though ;)

Re: [Alpha] - Very Small Quick Reyly

Posted: Mon Oct 08, 2007 1:13 pm
by azzurri
The best quick reply hack out there! It's always best to keep it simple.

Re: [Alpha] - Very Small Quick Reyly

Posted: Mon Oct 08, 2007 1:41 pm
by johnfosteruk
completely agree mate. if only I could sort out this subject thing

Re: [Alpha] - Very Small Quick Reyly

Posted: Thu Oct 11, 2007 12:05 pm
by yakusha
eviL<3 wrote:Hi,

i have a suggestion for your MOD. You should use <!-- INCLUDE -->, like that it's much easier to update to a newer version ;)
this mod, copyed from your mod :) and I says on top

Re: [Alpha] - Very Small Quick Reyly

Posted: Thu Oct 11, 2007 12:48 pm
by 008008
and subsilver2 modifs ?

Re: [Alpha] - Very Small Quick Reyly

Posted: Sat Nov 10, 2007 10:30 pm
by johnfosteruk
So, does anyone have any ideas how to make this quick reply auto populate the post title with RE: whatever (Whatever the topic title is)
I'm guessing I need to say something like display_subject = true;


Would be very much appreciated

Re: [BETA] - Very Small Quick Reply [0.3.0B]

Posted: Sun Nov 11, 2007 5:59 pm
by yakusha
mod updated,

Re: [BETA] - Very Small Quick Reply [0.3.0B]

Posted: Thu Jan 10, 2008 9:29 am
by 008008
yakusha wrote:mod updated,
it is compatible with phpbb 3. 0.0 ?

Re: [BETA] - Very Small Quick Reply [0.3.0B]

Posted: Thu Jan 10, 2008 4:18 pm
by Tritonforum.com
This looks good. I added it to the board to test, but removed it. It needs to add RE: and post title, and it needs to add the users signature. With those two items, it will be a perfect mod! I used it with the xand orange theme, and it looked just fine.

Re: [BETA] - Very Small Quick Reply [0.3.0B]

Posted: Sat Jan 12, 2008 2:39 pm
by ibelphegor
nice mod, but i think add in <!-- INCLUDE -->

make new HTML:

Code: Select all

<!-- [ + ] ---- hizli cevap -->
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT -->
   <div id="hizli_cevap">
   <form method="post" name="posting" id="post" action="./posting.php?mode=reply&f={FORUM_ID}&t={TOPIC_ID}&sid={SESSION_ID}" onsubmit="checkForm();" enctype="multipart/form-data">
       <div class="panel" id="postingbox">
           <div class="inner"><span class="corners-top"><span></span></span>
           
           <h3>{L_POST_REPLY}</h3>
           
           <fieldset>
               <div id="message-box" style="margin:auto;">
                  <textarea name="message" id="message" rows="7" cols="76" tabindex="1" title="" class="inputbox"></textarea>
               </div>
           </fieldset>
               
           <span class="corners-bottom"><span></span></span></div>
       </div>

<div class="panel bg2">
           <div class="inner"><span class="corners-top"><span></span></span>   
           
           <fieldset class="submit-buttons">
               <input type="submit" name="preview" tabindex="5" value="{L_PREVIEW}" class="button1" onclick="document.getElementById('postform').action += '#preview';" />&nbsp;
               <input type="submit" name="post" tabindex="4" value="{L_SUBMIT}" class="button1" accesskey="s" />
           </fieldset>
       
           <span class="corners-bottom"><span></span></span></div>
       </div>
     {S_FORM_TOKEN}       
   </form>
</div>
<!-- ENDIF -->
<!-- [ - ] ---- hizli cevap -->
save as quickreply.html and upload to "/styles/XXX/template/"
open viewtopic_body.html

find

Code: Select all

<!-- INCLUDE jumpbox.html -->
add after

Code: Select all

<!-- INCLUDE quickreply.html -->
open viewtopic.php

find

Code: Select all

     $postrow = array(
add before

Code: Select all

     // --- [  +  ] ---- quick reply -------------
     add_form_key('posting');
     // --- [  -  ] ---- quick reply -------------



For add signature:
quickreply.html:

Code: Select all

<!-- [ + ] ---- hizli cevap -->
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT -->
   <div id="hizli_cevap">
   <form method="post" name="posting" id="post" action="./posting.php?mode=reply&f={FORUM_ID}&t={TOPIC_ID}&sid={SESSION_ID}" onsubmit="checkForm();" enctype="multipart/form-data">
       <div class="panel" id="postingbox">
           <div class="inner"><span class="corners-top"><span></span></span>
           
           <h3>{L_POST_REPLY}</h3>
           
           <fieldset>
               <div id="message-box" style="margin:auto;">
                  <textarea name="message" id="message" rows="7" cols="76" tabindex="1" title="" class="inputbox"></textarea>
               </div>
           </fieldset>
               
           <span class="corners-bottom"><span></span></span></div>
       </div>

<div class="panel bg2">
           <div class="inner"><span class="corners-top"><span></span></span>   
           <td><input type="checkbox" class="radio" name="attach_sig" id="attach_sig"/>{L_ATTACH_SIG}</td>
           <fieldset class="submit-buttons">
               <input type="submit" name="preview" tabindex="5" value="{L_PREVIEW}" class="button1" onclick="document.getElementById('postform').action += '#preview';" />&nbsp;
               <input type="submit" name="post" tabindex="4" value="{L_SUBMIT}" class="button1" accesskey="s" />
           </fieldset>
       
           <span class="corners-bottom"><span></span></span></div>
       </div>
     {S_FORM_TOKEN}       
   </form>
</div>
<!-- ENDIF -->
<!-- [ - ] ---- hizli cevap -->
For default checked signature:
quickreply.html

Code: Select all

[code]
<!-- [ + ] ---- hizli cevap -->
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT -->
   <div id="hizli_cevap">
   <form method="post" name="posting" id="post" action="./posting.php?mode=reply&f={FORUM_ID}&t={TOPIC_ID}&sid={SESSION_ID}" onsubmit="checkForm();" enctype="multipart/form-data">
       <div class="panel" id="postingbox">
           <div class="inner"><span class="corners-top"><span></span></span>
           
           <h3>{L_POST_REPLY}</h3>
           
           <fieldset>
               <div id="message-box" style="margin:auto;">
                  <textarea name="message" id="message" rows="7" cols="76" tabindex="1" title="" class="inputbox"></textarea>
               </div>
           </fieldset>
               
           <span class="corners-bottom"><span></span></span></div>
       </div>

<div class="panel bg2">
           <div class="inner"><span class="corners-top"><span></span></span>   
           <td><input type="checkbox" class="radio" name="attach_sig" id="attach_sig"  checked="checked" />{L_ATTACH_SIG}</td>
           <fieldset class="submit-buttons">
               <input type="submit" name="preview" tabindex="5" value="{L_PREVIEW}" class="button1" onclick="document.getElementById('postform').action += '#preview';" />&nbsp;
               <input type="submit" name="post" tabindex="4" value="{L_SUBMIT}" class="button1" accesskey="s" />
           </fieldset>
       
           <span class="corners-bottom"><span></span></span></div>
       </div>
     {S_FORM_TOKEN}       
   </form>
</div>
<!-- ENDIF -->
<!-- [ - ] ---- hizli cevap -->
[/code]


I hope that this helped for someone.
regards,
uzi

Re: [BETA] - Very Small Quick Reply [0.3.0B]

Posted: Fri Feb 01, 2008 9:59 am
by cordiafreaks
Hey... thanks alot for the <INCLUDE> format...

However I do have a question, the border that surrounds the entire quickreply.html, I would like there to be no border... I hope this is a simple fix!

See my forum example to see the border I'm speaking of:
http://cordiafreaks.com/phpbb3/viewtopi ... 472#p12472

cheers, Steve