The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
Extra Threadfields Lite(Add Text, Radio, Drop Down, & Checkbox Fields To Threads!) Details »» | |||||||||||||||||||||||||||
Extra Threadfields Lite(Add Text, Radio, Drop Down, & Checkbox Fields To Threads!)
Developer Last Online: Oct 2022
Premium Modification:
http://www.modernvb.com/vb_products....fo&productid=1 **Before Making An Add on ** Please consult with me before making an add on to this hack. As it is my work and such, the add ons that you are trying to make for it may be in the next release and/or premium version. What does this do? This hack allows you to add more fields to your threads besides just the title and message. This is extremely usefull in order to specify certain things in a thread in a way that people are more aware of it and such. There are several types of fields you can add and several features for the hack. What features does this hack provide?
Template Edits: 4 Products Imported: 1 5 Easy Steps Step 1. Import the following product: product-extra_threadfields.xml Step 2. Upload the files in the upload folder. Step 3. Do the edits located below Step 4. Edit the newly added options in admincp as you please Step 5. Enjoy the hack. F.A.Q Q. How do i get extra fields to show in the "edit post" page? A. This is only available in the premium version. Q. If i do not want the fields to be shown automatically, can i do it manually? A. You can manually show fields in threads or posts by using $thread[fieldx] in the postbit or showthread template. Replace x with the ID of the field you want. To find the ID of the field go to admincp >> Extra Threadfields >> Extra Fields Manager, and hover over a field. The number after fieldid = will be the id of your field. Q. I updated all of the options, i installed it perfectly, i did all edits, and still the options are not showing when i go to add a new thread. What do i do? A. It is believed that you have a hack interfering with this one. Take away the edit that you did for putting $extrathreadfields inside the newthread template, and do this instead: Search for: Code:
<!-- / subject field --> Code:
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">$extrathreadfields</table> [high]Credits:[/high] CMX_CMGSCCC - Big thanks! Could not have done it without you! Don't forget to click INSTALL Show Your Support
|
Comments |
#62
|
|||
|
|||
I just installed this on 3.8.6 and purchased the premium version.. Having problems getting it the way I want
When I make the extra fields they show up on top of each other. I am hoping to do it side by side.. I run a freebie forum and want it this way Month Day Year Not Month Day Year. Can you please help me figure this out. |
#63
|
|||
|
|||
Try reading within this thread is a good start it is only 5 pages.
change in template showthread_extra_fields |
#64
|
|||
|
|||
Quote:
If it told me I wouldn't have posted.. Pro version is different then lite. |
#65
|
|||
|
|||
Ok.. I am not able to do the fields the way I want like this..
So I had to do a text box.. But when it's active I get double outside of the thread and inside as well. How do I get rid of the double.. Can anyone please help me. I have the premium version and would like to get this active for my members.. Thanks in advance. |
#66
|
|||
|
|||
Nobody can help?
|
#67
|
|||
|
|||
Since you are using the premium version, have you tried asking them directly? I would be interested in knowing how good their service is if I were going to spend the money on it.
|
#68
|
||||
|
||||
Is this fully working with the latest VB 3.8?
|
#69
|
|||
|
|||
|
#70
|
|||
|
|||
is there a way to add select fields with an blank option as first on select???
|
#71
|
||||
|
||||
Hi can someone help with a small issue, i have set the extra fields as a dropdown list and so that the first in the list isn't selected if they forget to chose one i have set the first field as "Please choose one of the following" but i dont want that to be used as a field either, so can someone help modify this
HTML Code:
if ($vbulletin->options['extra_threadfields_active'] == '1') { if (is_array($_POST['fields'])) { foreach($_POST['fields'] AS $key => $fieldvalue) { // check if the field type has options if (is_array($_POST['fields'][$key])) { foreach($_POST['fields'][$key] AS $index => $value) { $value = trim($value); // Check For Required if (empty($value)) { unset($_POST['fields'][$key][$index]); } } // set up the new $fieldvalue $fieldvalue = implode(",", $_POST['fields'][$key]); } if ($_POST['required'][$key] == 'yes' && empty($fieldvalue)) { $required = $_POST['requiredfield'][$key]; eval(standard_error(fetch_error('required_field_x_missing_or_invalid', $required))); } $dataman->validfields['field' . $key] = array(TYPE_NOHTML, REQ_NO); $dataman->set('field' . $key, $fieldvalue); } } } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|