Remove the "... OR upload an image"
Hi,
I just want one upload input not the two its currently showing hes what i have put then it shows 2 browsed for PDF input and i only require 1
$fields['product_installation_pdf'] = array('label' => 'Upload Installation PDF', 'type' => 'file', 'upload_path' =>assets_server_path('products', 'pdf'), 'overwrite' => TRUE);
Comments
URL to image: http://imageshack.us/photo/my-images/153/screenshot20111110at205.png/
So need to remove the ...OR upload part, can you explain how I do such thing?
unset($fields['my_field']);
The ... OR upload comes from the fuel/modules/fuel/models/base_module_model.php form_fields method (which is what the models are inheriting from). It looks for a field ending with _img or _image, and then adds that (see line 444 in that file).
echo '<pre>'; print_r($fields); echo '</pre>';