This documentation page is for Quform version 1 and may not be applicable for Quform 2 click here to visit the documentation for Quform 2.
This error usually means that the theme has its own JavaScript code bound to the popup trigger, which is overriding our code. You can do this by modifying the theme to ignore Quform popup links. For example, in themes by Elegant Themes, the problem code is in /epanel/page_templates/js/et-ptemplates-frontend.js, line 3 contains the code below.
1 | jQuery("a[class*=fancybox]").fancybox({ |
jQuery("a[class*=fancybox]").fancybox({
Change it to:
1 | jQuery("a[class*=fancybox]").not('.iphorm-fancybox-link').fancybox({ |
jQuery("a[class*=fancybox]").not('.iphorm-fancybox-link').fancybox({