• Resolved Sascha_77

    (@sascha_77)


    Hi folx.

    I figured out how to expand (and word-wrap) the very tiny description filed in the nextgen gallery uploader.

    Open the file:
    wp-content/plugins/nextgen-public-uploader/npu-upload.php

    Find the Line:

    $strOutput .= “\n\t<input type=\”textarea\” name=\”” . esc_attr( $name ) . “\” id=\”” . esc_attr( $name ) . “\”/>”;

    and replace it with this:

    $strOutput .= “\n\t<textarea type=\”textarea\” style=\”height:150px;width:680px\” name=\”” . esc_attr( $name ) . “\” id=\”” . esc_attr( $name ) . “\”/></textarea>”;

    Now you have a resizable Text Field. 😀 You can change or add styles within “style” to your needs. For my needs height and width is enough.

    http://s7.directupload.net/images/131227/2oqa6cwl.png

Viewing 1 replies (of 1 total)
  • Thread Starter Sascha_77

    (@sascha_77)

    With the new version of the uploader path has changed.

    Instead of

    wp-content/plugins/nextgen-public-uploader/npu-upload.php

    use

    wp-content/plugins/nextgen-public-uploader/inc/npu-upload.php

Viewing 1 replies (of 1 total)
  • The topic ‘Bigger description field in Nextgen Gallery Uploader? Solution is here. :)’ is closed to new replies.