• Resolved 14 Parishes

    (@14-parishes)


    I customized my upload form this is the code i used
    [fu-upload-form][input type=”text” class=”required” name=”email_address” description= “Email”][input type=”text” class =”required” name=”phone_number” description= “Phone Number”][input type=”text” class=”required” name=”location” description= “Location”][/fu-upload-form]

    However when media is uploaded to the site the email, phone, number and location don’t show.

    https://wordpress.org/plugins/frontend-uploader/

Viewing 4 replies - 1 through 4 (of 4 total)
  • +1 on this.

    Plugin Author Rinat

    (@rinatkhaziev)

    Hey,

    By default custom fields are hidden for attachments. Put something like this in your functions.php and you’ll see your meta fields:

    add_action( 'init', 'my_add_metaboxes' );
    	function my_add_metaboxes() {
    	add_post_type_support( 'attachment', array( 'custom-fields' ) );
    }

    If you’re using some other plugin for custom fields refer to the plugin’s documentation

    Thread Starter 14 Parishes

    (@14-parishes)

    Thanks Rinat it worked.

    Thread Starter 14 Parishes

    (@14-parishes)

    Rinat is there a way to include the upload successful message on a redirected success page?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Unable to view content placed in custom fields’ is closed to new replies.