ZigaForm – SoftDiscover Support http://kb.softdiscover.com/ Just another WordPress site Fri, 07 Feb 2020 23:42:57 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.7 Animation Add-On https://kb.softdiscover.com/knowledgebase/animation-add-on/ Fri, 07 Feb 2020 23:42:42 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=3029 You can animate your fields adding many animation effects. Also you can set up the delay and other options.

Requirement:

  1. To have installed any zigaform product. (premium version)

Video tutorial:

 

]]>
WebHook & Zapier Add-On https://kb.softdiscover.com/knowledgebase/webhook-zapier-add-on/ Fri, 07 Feb 2020 23:41:02 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=3027 You can use the WebHooks Add-On to send data from your forms to any custom page or script you like. Also you can connect with Webhook of Zapier

Requirement:

  1. To have installed any zigaform product. (premium version)

Video tutorial:

]]>
WooCommerce Add-On https://kb.softdiscover.com/knowledgebase/woocommerce-add-on/ Fri, 07 Feb 2020 23:32:19 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=3023 Build your form however you would like, add a calculation to generate the total, and select your form into a WooCommerce product. Then collect custom data when a product is added to the cart. You can even include variable pricing based on the options chosen in the form.

Requirements:

  1.  To have installed zigaform WordPress Price calculator & Estimation Form Builder (download here)

Video tutorial:

]]>
Internal Server Error https://kb.softdiscover.com/knowledgebase/internal-server-error/ Sat, 24 Aug 2019 02:50:20 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=2962 “Internal Server Error” message appear when loading or creating a form and blank screen is shown. One reason would be caused by the ModSecurity module on your hosting. just disable that module for your domain and then the form will load and work fine. here an screenshot of how is seen in hosting administrator:

]]>
customize fields via css https://kb.softdiscover.com/knowledgebase/customize-fields-via-css/ Sat, 24 Aug 2019 02:42:12 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=2956 ]]> autofill fields base on query string https://kb.softdiscover.com/knowledgebase/autofill-fields-base-on-query-string/ Sat, 24 Aug 2019 02:40:40 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=2954 ]]> mandatory checkbox and mail https://kb.softdiscover.com/knowledgebase/mandatory-checkbox-and-mail/ Fri, 23 Aug 2019 17:19:47 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=2925 here how to add a mandatory checkbox and configuring mail

]]>
Zigaform Events https://kb.softdiscover.com/knowledgebase/zigaform-events/ Sun, 19 May 2019 08:19:36 +0000 https://kb.softdiscover.com/?post_type=manual_kb&p=2784 Zigaform events let you launch actions based on a action performed by a user.

“zgfm.form.init_loaded” event

This event is fired just after the form is loaded

 

jQuery( document ).ready(function($) {

$(document).bind("zgfm.form.init_loaded", function(e,data) {

$('body').css('background','red'); alert('Added red to background');

});

});

 

“zgfm.form.before_submit”callback event

This event is fired just before the form submit the data:

jQuery( document ).ready(function($) {

  $(document).bind("zgfm.form.before_submit", function(e,callback) {

    if(true){

      callback({
      is_valid:true
      });

    }else{

      callback({
      is_valid:false
      });

    }

  });

});

 

 

when your process is fine, return the callback function:

callback({
is_valid:true
});

 

 

if your process is not fine, return the callback function with “is_valid” parameter to false:

callback({
is_valid:false
});

 

Note, remember to return always the callback function as shown in the example.

if you return callback function with parameter “is_valid”  to false, the form will not send they data, until it receive callback function with “is_valid” parameter to false.

“additional_validation.form”callback event

This event is fired just after validation and return a callback function

jQuery( document ).ready(function($) {

  $(document).bind("zgfm.form.wizbtn_additional_validation", function(e,callback) {

    if(true){

      callback({
      is_valid:true
      });

    }else{

      callback({
      is_valid:false
      });

    }

  });

});

 

when your validation is fine, return the callback function:

callback({
is_valid:true
});

 

 

if your validation is not fine, return the callback function with “is_valid” parameter to false:

callback({
is_valid:false
});

 

Note, remember to return always the callback function as shown in the example.

“zgfm.form.after_submit” event

This event is fired just after the form sent information

jQuery( document ).ready(function($) {

  $(document).bind("zgfm.form.after_submit", function(e,data) {

    $('body').css('background','red'); alert('Added red to background');

  });

});

 

 

 

]]>