Viewing 15 replies - 16 through 30 (of 32 total)
  • hey thanx ,
    that problem is solved ,can u tell me any pligin to create forms for job applications and which is free

    Thread Starter synthtony

    (@synthtony)

    As you can see this forum is mostly people using Contact Form 7

    Plugin Author Daniel Iser

    (@danieliser)

    Lol i see. But my previous post suggestion still applies but you need to modify it to your needs.

    Something like

    function modal_form_success()
    {
    	jQuery('.modal.active').emodal('close');
    	window.location = 'https://link-to-whereever.com';
    }

    and then in your forms callbacks
    on_sent_ok: modal_form_success()

    you could probably remove the emodal(‘close’) line entirely as you are redirecting. or use a setTimeout() to delay the redirect etc.

    Let me know if this helps. email me at danieliser + wizardinternetsolutions.com and i will give you advanced copy of 1.2. Currently waiting for a security review to make sure i got all security issues patched before releasing but i think i secured things that probably didnt even need it so should be good.

    I am not able to get upload button in Contact form 7,so can u tell me any other free form and plz tell how to edit in our main theme page

    Plugin Author Daniel Iser

    (@danieliser)

    What is the problem with the upload button? does CF7 not support that? If its an issue with it loading in the modal i can help if not then i would need to look for one that does that. I know you said free but Gravity Forms for sure has that and much more.

    Thread Starter synthtony

    (@synthtony)

    Danieliser and sudd unity, do you think we should move your questions to a different topic? I think we have already gone sideways on the original topic in my effort to help with Sudd’s original issue.

    Danieliser, as to your script, does it still go in the themes JS and then add the call in the modal form at the end?

    Can’t wait for the next version (but i will ?? )

    Plugin Author Daniel Iser

    (@danieliser)

    correct. You would add that to your js files and then use it as the success callback by placing the other line in the advanced options box at the bottom of your CF7 form. I will have to look for the exact name of the textarea but its for stuff like that.

    Thanx ,
    can u tell me how i change the slide present in my theme and add some pics on that slides and how to change my landing page of my website which is themes front page,how to customize it

    Thread Starter synthtony

    (@synthtony)

    Sudd unity,
    You need to ask this question as a different question in the appropriate category. This forum is for plug-ins, not theme support. Please post under Themes and themes support and I am sure you will get a better response.

    Plugin Author Daniel Iser

    (@danieliser)

    This is no longer a support issue for Easy Modal. Marking as resolved.

    synthtony were you able to figure out how to leave the modal box open after form submit? I am having the same issue. I want to keep the modal box open to the user to show him that the form has been submitted.

    Thanks!

    Plugin Author Daniel Iser

    (@danieliser)

    This is fixed in version 1.2, unfortunately my host provider hostgator is temporarily having issues which has all my sites and email down. v1.2 is ready for pushing out.

    In v1.2 the modal will not close itself. You can define a success callback to the form itself and call a js function to close the modal after x time.

    You can see an example of this explained here https://www.ads-software.com/support/topic/cf7-event-tracking-integration-modal-doesnt-close-with-on_sent_ok?replies=2

    Plugin Author Daniel Iser

    (@danieliser)

    Still there synthtony? Can i get you to take a minute to re-rate & review the plugin now that all the new features are available?

    you could probably remove the emodal(‘close’) line entirely as you are redirecting. or use a setTimeout() to delay the redirect etc.

    Can you give an example of delaying action to close modal window

    Thank you in advance

    Plugin Author Daniel Iser

    (@danieliser)

    Im assuming you want to close the modal after x seconds.

    So.

    function modal_form_success()
    {
    	setTimeout(function(){
    		jQuery('.modal.active').emodal('close');
    	}, x);
    }

    and then in your forms callbacks
    on_sent_ok: modal_form_success()

    There are a couple of commands you can use with the emodal() function
    close,open and center to name a few. For open though best to use the modals id eModal-# as a selector instead of .modal.active.

Viewing 15 replies - 16 through 30 (of 32 total)
  • The topic ‘Modal closes on CF7 Form "Submit"’ is closed to new replies.