
04-18-2006, 03:25 PM
|
 |
|
|
Join Date: Feb 2004
Location: I LOVE New York!
Posts: 2,886
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by hIBEES
Hi Abe
Nice work
however lol
I'm trying to remove a few of the options ..
I edit out the $ of what i want to edit out
HTML Code:
////////////////////////////////////////////////////////////////////////////////////////////////////
//VARIABLES
//Study how variables are add here to add or remove any. If you add a variable to your form, you must add it to part one and part two.
////////////////////////////////////////////////////////////////////////////////////////////////////
// Part 1
$vbulletin->input->clean_array_gpc('p', array(
'normalanswer1' => TYPE_STR,
'longanswer1' => TYPE_STR
));
// Part 2
$normalanswer1 = $vbulletin->GPC['normalanswer1'];
$longanswer1 = $vbulletin->GPC['longanswer1'];
It removes the text but not the input fields
I anly want 3 options for the form, how do i remove the input fields and the buttons?
Screenshot
http://www.mcdanieldigital.com/comun...mages/form.jpg
I created the new plugin as per the instructions in the original plugin 
|
You have to remove the imput fields from the template.
|