vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Quick Reply Box (https://vborg.vbsupport.ru/showthread.php?t=34597)

**MILK INC** 02-23-2003 04:11 PM

Quote:

Originally posted by chitown
to add a new template go to the admin cp to the left all the wat to the bottom there are your template options click add.
thats all you do to "create a new template"

Thanks!
Cud sum 1 explain the last part, part 3!

Thanks!

Sinzar 02-23-2003 05:01 PM

You go to the admin panel, under templates, click 'modify', find the template named 'showthread' listed under 'showthread templates' and add '$replybox' where it says too.

now my question is, does this NOT work on 2.3.0? I've installed it and triple checked it and then some...and It does not show up what-so-ever...any ideas?

**MILK INC** 02-23-2003 05:31 PM

Thanks but i just got it! lol
Yer it works on 2.3.0 coz i have donne it!
Can you tell me wot you have donne so far?

Sinzar 02-23-2003 06:00 PM

Now i'm getting a parse error way down on line 515, it's an unexpected '$' *rolls eyes*

**MILK INC** 02-23-2003 06:28 PM

Well i dunno much about it but mine works fine!

Sinzar 02-23-2003 07:28 PM

well, I got rid of the parse error..but the box for quick reply just DOESN'T show up..I get no errors at all, it just doesn't show up.

chitown 02-24-2003 01:17 PM

you did place it in the forum display template right?

Rapid Gaming 02-24-2003 04:14 PM

It works on my 2.3.0, but it appears at the top, which I don't mind but the bottom would be better... Any ideas???

Rapid Gaming 02-24-2003 04:15 PM

Oh and BTW the URL is:

http://forums.gamewizards.net

Madm3rlin 02-25-2003 01:10 AM

Quote:

Originally posted by Rufus69
If you are getting the QRB on top instead of bottom then listen up :)
it seems that there are 2 places where the code is place, you must put it on the second :)

that might answer your question

chitown 02-25-2003 11:11 AM

no answer on an attachment fix eh?

Boofo 02-25-2003 11:23 AM

Quote:

Originally posted by Vlad


$textareacols = gettextareawidth();

That code is in the quick reply box code. You won't find it until you install it.

1. In showthread.php find this bit of code:
// ##################################################

if (!$getperms['canviewothers'] and ($thread['postuserid']!=$bbuserinfo['userid'] or $bbuserinfo['userid']==0)) {
show_nopermission();
}

if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}

// ##################################################
And replace it with the following:
// ##################################################

if (!$getperms['canviewothers'] and $thread['postuserid']!=$bbuserinfo['userid']) {
show_nopermission();
}

if (($bbuserinfo['userid']!=$thread['postuserid']) and (!$getperms['canviewothers'] or !$getperms['canreplyothers'])) {
$replybox='';
} elseif (!$getperms['canview'] or (!$getperms['canreplyown'] and $bbuserinfo['userid']==$thread['postuserid'])) {
$replybox='';
} elseif (!$thread['open'] and !ismoderator($thread['forumid'],'canopenclose')) {
$replybox='';
} else {
$textareacols = gettextareawidth();
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");
}

if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}[/QUOTE]

PennylessZ28 02-25-2003 11:27 AM

I installed this a long time ago, but forgot to say COOL BEANS! And click install, excellent work, I have done much modification to mine since then :)

CityInet 02-25-2003 05:20 PM

the box does not give the option to subscribe to the forum. how can i set my users to subscribe to the forum they are replying to , by default?

Cluster One 02-26-2003 02:23 AM

I've got this installed, but when I use it i keep getting this error..

No thread specified. If you followed a valid link, please notify the webmaster.

Any Ideas?

maligno 02-26-2003 09:33 AM

vbcode botton it does not work with $vbcode_buttons

idea?

Xyphen 02-27-2003 06:59 PM

Works perfectly fine with vB2.3.0 RC3.

Nivlam 02-27-2003 08:27 PM

uh i did something wrong .. mine says "No input file specified." when i click on quick reply

ed2k_2 03-01-2003 06:36 PM

Maybe I'm wrong somewhere, that's why I got this message:

https://vborg.vbsupport.ru/

Kindly help... this is the first time I'd like to install this Quick Reply hack.

97cobracpe 03-02-2003 03:35 PM

I just installed this hack. Works great, my members will enojy this new feature. Easy to install as well. :)

insanctus 03-03-2003 04:48 AM

Very usefull hack.... I am sure once my boards are going and all it be well used.... ~ clicks install...

Now to find how to add a image to the text bg .

stark427 03-06-2003 02:17 AM

Seems to be working fine at my 2.2.9 board

*clicks install*

cool hack :D

Skyrender 03-07-2003 12:45 AM

Hmm.... I just installed it on my board *(vB 2.3.0) But the reply box doesn't work, I've already it on a version 2.2.9 but I don't know what I did worng. Is their any php code changes in 2.3.0 that isn't in the quickreply text file?

Skyrender 03-07-2003 12:52 AM

N/m I fixed the problem, Avio 7 how do you get smilies with the quick reply hack? Because you used to have them next to the quick reply box how do you do that?

refertech 03-09-2003 06:02 PM

Quote:

Originally posted by FireFly
JTMON - Add this line:
Code:

        $clickysmilies = getclickysmilies();
to showthread.php right after this:
Code:

        $textareacols = gettextareawidth();
then use $clickysmilies in the showthread_quickreply template to add the box with the smilies in it, but you will also need to add these two lines:
Code:

<script language="Javascript" src="vbcode.js"></script>
<script language="Javascript" src="vbcode_language.js"></script>

to the template right after the <form> tag. That should work. :)

Wow this is even handier than I thought... :D


Where do I put $clickysmiles at in the template? Anywhere?

refertech 03-09-2003 06:15 PM

I got it. Never mind. :)

Quote:

Replace:

<td bgcolor="{secondaltcolor}" valign="top" nowrap><normalfont><b>Your Reply:</b></normalfont></td>

With:

<td bgcolor="{secondaltcolor}" valign="top" nowrap><normalfont><b>Your Reply:</b></normalfont><p>$clickysmilies</td>

Pretendo 03-10-2003 10:48 PM

Sorry if someone already asked this, but do I have to make any changes to the .php files to get Quick Reply working with another style? I just installed a new style earlier and I went and added the "showthread_replybox" as instructed. Are there any other steps I need to take?

Thanks.

[Edit - Found out I skipped a step... d'oh! :paranoid: )

refertech 03-10-2003 10:50 PM

Unless you have replaced those files with a new version for a upgrade, then I would say no.

Skyrender 03-12-2003 07:31 PM

Hehehe, thanks refertech ;)

Sascha 03-13-2003 05:15 PM

Hi!

What´s to do that the Quick Reply-Box is only at the bottom of the last Page of the Thread ?

Sascha

ed2k_2 03-14-2003 05:21 AM

Quote:

03-02-03 at 04:36 AM ed2k_2 said this in Post #859
Maybe I'm wrong somewhere, that's why I got this message:

http://www.ed2k.com.ph/ed/quick.jpg

Kindly help... this is the first time I'd like to install this Quick Reply hack.

Did someone experienced this problem after installing Quick Reply Box.

Kindly help...

Gutspiller 03-15-2003 12:37 AM

I don't know if it was mentioned in one of the many pages of this thread, but can somebody help me on where to find out how to get it so that the quick reply box doesn't appear when a thread is closed?

Drile 03-15-2003 05:22 AM

i have 2.3.0

and i'm pretty sure i installed it at the right place, but it is still showing up at the top of the page. not the bottom?

edit: n/m, figured it out :) i did indeed install it at the wrong place

superman 03-15-2003 02:35 PM

so this works with 2.3.0?

Gimppy 03-15-2003 09:29 PM

I have tried 3 times, and it dosent give errors, but it doesnt put a quick reply eaither

Robink 03-16-2003 07:00 AM

Can anyone tell me how I can make it so that a user has to click a button for all the smilies to be displayed?
And also, maybe a button for vBCode wouls be nice...

I dont want to add the full smilie box in my quick reply since that makes it big :(

Robink 03-16-2003 07:03 AM

Can anyone tell me how I can make it so that a user has to click a button for all the smilies to be displayed?
And also, maybe a button for vBCode wouls be nice...

I dont want to add the full smilie box in my quick reply since that makes it big :(

Skyrender 03-16-2003 01:10 PM

Gimppy I'll help IM me at Meww2894. Robink, add this code to where you want your smilies link.
Note take out the *'s

<*a href="javascript:opensmiliewindow(240,280,'')">Get More</a*>

Achaeon 03-17-2003 05:22 PM

Ok I've read through all 59 pages of this thread and couldnt find an answer so here goes:

Ever since installation I get complaints of no Email Notifications going out when people are posting using quick reply, i've seen a few other complaints in this thread of the same thing but no fixes. Any ideas ??

Aurore 03-17-2003 07:17 PM

Just one thing. Could someone work on a vB3 like quick reply with QUOTE!?


All times are GMT. The time now is 08:14 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.02983 seconds
  • Memory Usage 1,815KB
  • 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
  • (3)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (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