Title: Additional Fields Textfield
Last modified: October 31, 2016

---

# Additional Fields Textfield

 *  Resolved [aerolite](https://wordpress.org/support/users/aerolite/)
 * (@aerolite)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/additional-fields-textfield/)
 * Hello, I used additional fields and it is a textfield. It shows up fine in the
   page, and I can see it is being sent through POST…
 * How can I get this value when the page gets redirected after uploading a file?
 * This is the POST I get, and the value from textarea.
    Content-Disposition: form-
   data; name=”hiddeninput_1_userdata_0″ Test message

Viewing 1 replies (of 1 total)

 *  Plugin Author [nickboss](https://wordpress.org/support/users/nickboss/)
 * (@nickboss)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/additional-fields-textfield/#post-8378125)
 * You can pass this value as a parameter in the redirection URL.
 * Redirection is performed by the plugin by calling the following function:
 *     ```
       function wfu_Redirect(link) {
       	window.location = link;
       }
       ```
   
 * After the page loads, you can redeclare this function, so that you change the
   redirection link, e.g.
 *     ```
       wfu_addEventHandler(window, "load", tweak_redirect);
       function tweak_redirect() {
         window["wfu_Redirect"] = function(link) {
           var newlink = link;  //code to set a new redirection link
           window.location = newlink;
         }
       }
       ```
   
 * You can put the above code (after you complete it) inside the page contents right
   below the plugin’s shortcode (enclosed in <script> tags).
 * Regards
 * Nickolas

Viewing 1 replies (of 1 total)

The topic ‘Additional Fields Textfield’ is closed to new replies.

 * ![](https://ps.w.org/wp-file-upload/assets/icon-256x256.png?rev=3252590)
 * [Iptanus File Upload](https://wordpress.org/plugins/wp-file-upload/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-file-upload/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-file-upload/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-file-upload/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-file-upload/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-file-upload/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [nickboss](https://wordpress.org/support/users/nickboss/)
 * Last activity: [9 years, 7 months ago](https://wordpress.org/support/topic/additional-fields-textfield/#post-8378125)
 * Status: resolved