Also if I add title=”..” to the [fu-upload-form ] shortcode it also does not show.
I should add that the label shows but the <textarea> does not.
I mean the form title remains default.
Also, the Submit button is missing! Gah!
Plugin Author
Rinat
(@rinatkhaziev)
Are you sure that you’ve read FAQ? 🙂
textarea shortcode is [textarea], not [input type=”textarea”]
This is the default shortcode:
[fu-upload-form class="your-class" title="Upload your media"]
[input type="text" name="post_title" id="title" class="required" description="Title" multiple=""]
[textarea name="post_content" class="textarea" id="ug_caption" description="Description (optional)"]
[input type="file" name="photo" id="ug_photo" class="required" description="Your Photo" multiple=""]
[input type="submit" class="btn" value="Submit"]
[/fu-upload-form]
Keep in mind, that you might want to check “Suppress default fields” checkbox in the settings if you customize your form, otherwise you might end up with default fields doubling your custom form fields. If you modify the form, make sure your form fields have the same name as default ones for title and content. Let me know if that makes sense.