• Resolved bradbcamo

    (@bradbcamo)


    I have replaced file with multifile on a form and now my usual ‘submit’ button and a new ‘upload’ button show, alongside the standard ‘browse’. button

    How do I remove the new ‘upload’ button?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Maulik Vora

    (@zluck)

    Hello @bradbcamo

    It seems you didn’t remove the “file” tag, please remove it. It will remove the standard “browse” button.
    new “Upload” button is result of putting “multifile” tag.

    Thread Starter bradbcamo

    (@bradbcamo)

    Hi Zluck,
    Thanks for getting back to me.

    This is the total code for the form. no “file” tag

    [text* uploader-name placeholder “Enter Name”]
    [multilinefile multilinefile-378 limit:1153433600 filetypes:jpg]

    [submit “Share”]

    Plugin Author Maulik Vora

    (@zluck)

    Got it, we see a conflict of css with Bootstrap.
    Would you go to style.css of plugin and add “!important” at the end of this css.

    .zl-form-control-wrap input,
    .zl-form-control-wrap .mfcf7_zl_delete_file {
        display: none;
    }

    to

    .zl-form-control-wrap input,
    .zl-form-control-wrap .mfcf7_zl_delete_file {
        display: none !important;
    }

    That should fix the issue for now, we will push the update really soon.

    Thread Starter bradbcamo

    (@bradbcamo)

    Scratch that. Seems to be working.

    Now I just need to work out how to style the new upload button ??

    Thanks

    • This reply was modified 3 years, 9 months ago by bradbcamo.
    Plugin Author Maulik Vora

    (@zluck)

    Give it a hard refresh or try in private window once.

    Plugin Author Maulik Vora

    (@zluck)

    @bradbcamo hope it worked for you.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Multiple upload buttons’ is closed to new replies.