View Full Version : Does anyone know?
angelimnot
07-07-2010, 03:08 AM
Does anyone know if there is a mod very very similar to this one...
https://vborg.vbsupport.ru/showthread.php?t=245312&highlight=button
that will allow me to change the "New Thread" button with a different button, and have that page link to a form that I've created in my forums?
KProjects
07-10-2010, 04:06 PM
You could install that mod, then change the link from:
/newthread.php?do=newthread&f=xx to /yourform.php
And upload a different button.
midnz
07-22-2010, 09:31 AM
Does anyone know if there is a mod very very similar to this one...
https://vborg.vbsupport.ru/showthread.php?t=245312&highlight=button
that will allow me to change the "New Thread" button with a different button, and have that page link to a form that I've created in my forums?
I don't know how to change your "New Thread" button but if you want your New Thread button to link to a form then create this plugin:
Title: Redirect New Thread to Form (or whatever title that you will remember what it is)
Hook Location: newthread_start
Execution Order: 5 (should be okay)
Plugin PHP Code:
if (in_array($forumid, array(XX))) {
header( 'Location: http://www.form address goes here' ) ;
}
Change XX to the forum ID number where the New Thread button is that you want linked to your form.
Edit your form address in to the Location part of the code.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.