PDA

View Full Version : Confirm Correct Forum Before New Thread


ChurchMedia
04-01-2006, 10:00 PM
NOTE: There is an AJAX version with some added features here:
https://vborg.vbsupport.ru/showthread.php?threadid=114388

-------------------------------------------
This is a simple mod that will display a confirmation window, asking the user to confirm that they are posting in the correct forum. It should help prevent people from posting in the wrong forums (and then you have to move them).

If they click "Okay" it goes to the new thread page. If they click "Cancel" it goes back to the forum home page.
-------------------------------------------

In the newthread template find:
$navbar

BELOW that add:
<script type="text/javascript">
<!--
var answer = confirm ("You are about to post a new thread in the $foruminfo[title] forum. Make sure this the correct forum for your topic.")
if (!answer)
window.location="index.php"
// -->
</script>

Enjoy!

Freesteyelz
04-02-2006, 02:30 AM
That's a sweet, helpful code. I've added a forumid conditional to only include specific forums:


<if condition="in_array($forumid, array(x, y, z))">
<script type="text/javascript">
<!--
var answer = confirm ("You are about to post a new thread in the $foruminfo[title] forum. Make sure it is the correct forum for your topic.")
if (!answer)
window.location="index.php"
// -->
</script>
</if>


Thanks, ChurchMedia. :) *Clicked install*

ChurchMedia
04-02-2006, 02:39 AM
That's a sweet, helpful code. I've added a forumid conditional to only include specific forums:



Thanks, ChurchMedia. :) *Clicked install*

Very cool idea! Thanks for adding that! :up:

Freesteyelz
04-02-2006, 03:04 AM
Np. I hope other people will find it useful as I do. :)

threat
04-02-2006, 01:28 PM
thanks this should help with my boards, I really get tired of moving threads

babolo
04-02-2006, 02:36 PM
Well I would install it but it'd annoy the crap out of my members thats the only problem

COBRAws
04-02-2006, 04:54 PM
Could someone please convert this JS into AJAX? Would be great! Because I hate popups.

ChurchMedia
04-02-2006, 07:11 PM
Could someone please convert this JS into AJAX? Would be great! Because I hate popups.

I'm working on it and will release it today. Great suggestion!

ChurchMedia
04-02-2006, 09:46 PM
There is an AJAX version with some added features here:

https://vborg.vbsupport.ru/showthread.php?t=112023

Smiry Kin's
04-07-2006, 12:51 PM
Works perfect.

Bounce
04-30-2006, 11:52 PM
Could this be used for certain users.

The users i select to have it showing leaving users i don't want to have it able to create a new thread without having to confirm

pantec
06-21-2006, 03:51 PM
Can you add this to the Reply Option as well in addition to the New Thread ? :confused:

JabirA
09-05-2012, 09:45 AM
Does this work for 4.x.x ?
I was looking this like forever..

JabirA
09-05-2012, 09:47 AM
Never mind, got it.

https://vborg.vbsupport.ru/showthread.php?t=236718

JabirA
09-05-2012, 09:59 AM
However, its not what I am looking for. I would like a pop up where the users have to click OK before the topic is opened. Somebody?

The above mod didn' t work.