• Resolved ntemogia

    (@ntemogia)


    How can i implement this task?

    I want this scenario: when a user open the popup form, he must submit form.

    I found the way to make the X exit sign to disappear through theme settings,

    but when i click outside of form, the form disappears. How i can change that?

Viewing 1 replies (of 1 total)
  • Plugin Support Mane Grigoryan

    (@manegr)

    Hi dear @ntemogia ,

    Please, put the following JS code into Settings -> JavaScript -> inside before_load function.
    jQuery(‘#fm-popover-inner-backgroundXX’).off()
    where XX must be replaced with form-id.

    Here is a more complex version, however this one works without CSS.
    Please, put the first code inside before_load.

    if (!jQuery(‘#fm-popover-containerXX .fm-notice-success’).length) {
    jQuery(‘#fm-popover-inner-backgroundXX’).off()
    jQuery(‘#closing-formXX’).hide()
    }

    Please, put this second code into after_load.
    jQuery(‘#closing-formXX’).show()

    Best Regards,
    Mane

Viewing 1 replies (of 1 total)
  • The topic ‘How to force user to submit form’ is closed to new replies.