PDA

View Full Version : New Posting Features - Quick Reply for Guests by BOP5


BirdOPrey5
07-29-2011, 10:00 PM
Updated to 0.91

0.9: Initial Release
0.91: Fixed bug where hman verify would not show

This is a mod to enable guests to use the Quick-Reply function in VB 3.8.x.

Guests would usually need to press the "Post Reply" button to make a reply. Now they can reply like everyone else using Quick-Reply.

The option will ONLY show on threads where they have permission to post a reply.

If you have human verification manager enabled they will also see the human verification question which they must answer correctly to have their post posted.

Live Demo: http://www.qapla.com/mods/showthread.php/183-Guest-Thread-Test (VB4 Version in the demo)

This is ONLY for VB 3.8, it will not work on 4.x. VB4 Version: Link (https://vborg.vbsupport.ru/showthread.php?t=278830)

Please Mark as Installed if you use this. :)
Donations are always appreciated.

BirdOPrey5
07-30-2011, 03:50 PM
Reserved.

v123shine
07-31-2011, 11:14 AM
Love this mod

when i try to replay the thread using quick replay, i got this message:
The string you entered for the image verification did not match what was displayed.

reCaptcha (Image Verification) not show in quick replay?
How to show reCaptcha (Image Verification) in quick replay?

I'm using vb 3.8.7

Thank you

BirdOPrey5
07-31-2011, 11:30 AM
It's possible the auto template edits are failing. Please give me a link to a forum a guest can post in, I'll see what's going on.

You may have to do the manual template edits.

v123shine
07-31-2011, 11:36 AM
First i try using Auto Template Edit, got this error message >> The string you entered for the image verification did not match what was displayed.

second, i try manual template edits, i still got the same error!

BirdOPrey5
07-31-2011, 11:48 AM
The automatic template edits should work on your site. Do you have any other mods installed?

v123shine
07-31-2011, 11:55 AM
If I enable the Auto Template Edit, I got this error message >> The string you entered for the image verification did not match what was displayed.

v123shine
07-31-2011, 11:58 AM
>> Do you have any other mods installed?

I try to disable all my mods, but still got the same problem :(

BirdOPrey5
07-31-2011, 12:36 PM
I see my non-test site is having the same problem. Will work on a fix.

v123shine
07-31-2011, 12:59 PM
I see my non-test site is having the same problem. Will work on a fix.

oc, i will waiting for the fix mod :)

BirdOPrey5
07-31-2011, 02:05 PM
Released Version 0.91 - Human Verify should now load properly.

v123shine
07-31-2011, 02:55 PM
Work Great...!!

BirdOPrey5
07-31-2011, 04:58 PM
Work Great...!!

Finally! :up: Thank you for reporting the issue.

sassou2009
08-01-2011, 12:32 AM
we should have an option to moderate new posts from unregistred !

BirdOPrey5
08-01-2011, 11:39 AM
we should have an option to moderate new posts from unregistred !

You don't need a mod for that. In your Admin CP -> Forum Permissions set Follow Forum Moderation Rules to "No" for unregistered users in any forums you want to put all guest comments into the moderation queue.

If you want to do it for all guest comments then change the same setting in Usergroup Manager.

davio33
08-20-2011, 09:29 AM
any chance this will be available for 4.xx?

BirdOPrey5
08-20-2011, 11:23 AM
It's on my long list of projects. No timeline available. VB4 does permissions differently so not a simple port.

dallibose
08-20-2011, 11:15 PM
didn't work for me...I enabled auto first and then I manually edited the SHOWTHREAD template but still nothing appears..

BirdOPrey5
08-20-2011, 11:21 PM
What version of vBulletin? Link to your form (if still installed?)

dallibose
08-24-2011, 03:48 AM
<a href="http://www.mastinepal.com" target="_blank">link to the forum </a> ..sorry but i uninstalled it.. I can reinstall it if you would like...

BirdOPrey5
08-24-2011, 10:12 AM
If nothing happens even with the manual edits there's nothing much I can do. But I notice you don't seem to have guest posting enabled at all- this mod won't let guests quick-reply unless you already give them permission to post to begin with.

steveneff
12-30-2011, 07:44 PM
Hello, thanks for this mod.

Got it working on vBulletin 4.1.2 Patch Level 3

imported mod
turned off auto edit
Used the code below in place of what's in the readme

<vb:if condition="$show[bop5username]">
<div>{vb:rawphrase username}: <input type="text" class="bginput" name="username" value="{vb:raw vboptions.bop5qrg_username}" tabindex="1" /></div>
</vb:if>

One thing, if someone changes the default name when posting it does not change it in their post in admin cp, it stays as the default name.
Did it work in the original, can it be fixed?

BirdOPrey5
12-31-2011, 11:18 AM
That's really weird, in my experimenting I found the permissions were different in vb 4.x then 3.x and that was the main reason (I thought) the 3.x code wouldn't work on 4.x.

I will investigate this on 4.x and see what I can see, thanks for the info. :up:

steveneff
01-15-2012, 07:15 PM
I will investigate this on 4.x and see what I can see, thanks for the info. :up:

How's it going?

Don't know if this is the way quick reply normally works but if I use it on a thread that has more than one page, not the last page, after submitting the post I get kicked back to forum display. If I use quick reply on the last page it works fine, after submitting the post it stays on the same thread page.

BirdOPrey5
01-15-2012, 09:52 PM
haven't started yet... that is not the way quick reply should work, probably a bug since it doesn't think quick reply should be enabled.

steveneff
01-16-2012, 07:58 PM
If I change this code in showthread.php it works, but is it safe to change?
// only allow ajax on the last page of a thread when viewing oldest first
$show['allow_ajax_qr'] = (($vbulletin->GPC['pagenumber'] == ceil($totalposts / $perpage)) ? 1 : 0);
Change to:
// only allow ajax on the last page of a thread when viewing oldest first
$show['allow_ajax_qr'] = 1;

BirdOPrey5
01-17-2012, 12:58 AM
I don't think that should work right... but try it.

steveneff
01-17-2012, 09:50 PM
It does look to be working ok. What do you think would not work right?

BirdOPrey5
01-18-2012, 12:09 PM
What happens if you add a quick-reply on a page other than the last page?

steveneff
01-18-2012, 08:22 PM
Before making that change to showthread.php if you used quickreply on a page other than the last page, once the post had been submitted you would be kicked to the threads forumdisplay page.
With the change in place the you stay on the same thread page after the post has been submitted.

BirdOPrey5
01-18-2012, 11:21 PM
If you can live with that you should be ok... but the correct behavior on quick reply (if logged in) is that it would take you to the last page after submitting the post.

steveneff
01-21-2012, 12:32 PM
Oh, I didn't notice that. I'll investigate more. Any idea what would make it do that?

BirdOPrey5
01-22-2012, 11:35 AM
just wasn't designed to work this way I guess.

deverill2010
02-19-2012, 08:13 AM
BirdOPrey5 I don't suppose your ever make a vb4 version of this? I really want this mod but am on vb4 and as of yet havent been able to find any suitable alternatives :(

blueperspective
02-19-2012, 08:32 AM
A vb 4 version would be amazing.

BirdOPrey5
02-19-2012, 04:45 PM
OK, check out the VB4 Version: https://vborg.vbsupport.ru/showthread.php?t=278830

Demo here: Qapla.com Guest Forum Demo (http://www.qapla.com/mods/showthread.php/183-Guest-Thread-Test)

Working well for me on 4.1.10. Please keep any further discussion of the 4.x version in the 4.x thread.

:)

tehPARADOX
08-28-2012, 11:24 PM
This is a neat mod.

Instead of allowing guests to make the post, is there anyway to force them to register after hitting reply in order for their post to get posted?

I believe this will greatly increase conversion.

BirdOPrey5
08-29-2012, 10:29 PM
Probably but not with this mod.

m7sen
05-22-2015, 07:48 PM
nice mod

can the Guests add new thread ?
and can Guests upload avatar ?

if Guests can enable to register just to take nickname its be good with email and no need to activation email

This is a neat mod.

Instead of allowing guests to make the post, is there anyway to force them to register after hitting reply in order for their post to get posted?

I believe this will greatly increase conversion.

you mean like this mod
https://vborg.vbsupport.ru/showthread.php?t=199280

but its old for vb 3.7.4

zorcocuq
04-21-2016, 07:00 PM
Thanks for sharing.