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 only 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
Do I also remove the actual radio Box itself ?
HTML Code:
////////////////////////////////////////////////////////////////////////////////////////////////////
//RADIO BOX CHOICES : QUESTION 2 (do not use quotation marks or you will get a parse error, besides the quotes around the whole text)
////////////////////////////////////////////////////////////////////////////////////////////////////
$radioquestion2 = "Choose another one of the following choices";
// The following choices must NOT have quotation marks
$radiochoice2a = "good";
$radiochoice2b = "bad";
$radiochoice2c = "both";
////////////////////////////////////////////////////////////////////////////////////////////////////