• Resolved jezremy_adelaide

    (@jezremy_adelaide)


    When this file is enqueued it has a space before and after the file path.

    Line 1204 of frontend-uploader.php

    wp_enqueue_script( 'jquery-validate', FU_URL .' lib/js/validate/jquery.validate.js ', array( 'jquery' ) );

    Note space before at FU_URL .' lib/js/
    and space after at
    /jquery.validate.js ',

    This code line should be:
    wp_enqueue_script( 'jquery-validate', FU_URL .'lib/js/validate/jquery.validate.js', array( 'jquery' ) );

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

Viewing 1 replies (of 1 total)
  • Plugin Author Rinat

    (@rinatkhaziev)

    Thanks for the catch! I pushed a new version with this and couple of more fixes.

Viewing 1 replies (of 1 total)
  • The topic ‘script name jquery.validate.js doesn't load, as it is enqueued with code typos’ is closed to new replies.