Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    Not really, the plugin does not allow to include third-party shortcodes because there is not way to control the code that replaces the shortcode, and, this code can break the form’s structure, I recommend you an alternative solution:

    – In the page where is inserted the form, activate the “Text” tab, and insert the third-party shortcode into a hidden <DIV> tag, for example:

    <DIV class="third-party-code">[popup_trigger id="212" tag="span"]<b><u>Clcik here to view...bla bla</u></b>[/popup_trigger]</DIV>

    – and then into the form insert a “HTML Content” field with the following piece of code as its content:

    <DIV class="third-party-code-container"></DIV>
    <script>
    fbuilderjQuery(document).one('showHideDepEvent', function(){
    fbuilderjQuery('.third-party-code-container').html(fbuilderjQuery('.third-party-code').html());
    });
    </script>

    Best regards.

    Thread Starter allanreese

    (@allanreese)

    Hi

    Excellent workaround. Thanks a lot.

    – Allan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Link to disclaimer-popup within a calculated form’ is closed to new replies.