• Resolved beentee

    (@beentee)


    Hello!

    I am thinking of buying the professional version of the plugin.

    Please tell me if I can export my forms and import them into my other websites after purchase so that I do not have to create the same form again and again for every website of mine.

    I have another question. In the “Define dependencies” section of a “Calculated Field”, is it possible to insert an interval of values after “If value is” (for example, from 6 to 9 instead of the default selections like “Greater than” or “Less than”).

Viewing 1 replies (of 1 total)
  • Plugin Author CodePeople2

    (@codepeople2)

    Hello @beentee

    Thank you for using our plugin! Regarding your initial question, yes, you can install the same plugin copy on both websites. To move your forms, simply export them from your current website and then import them into another website. For detailed instructions, please refer to the corresponding section in our plugin documentation.

    https://cff.dwbooster.com/documentation#import-export-form

    In the calculated fields you can use intervals, you need only to click on the “Edit rule manually” link, and enter the expression 6<=value && value<=9

    Please watch the following video:

    https://resources.developers4web.com/cff/tmp/2025/03/21/video_o.mp4

    Please note that for complex dependency rules you can activate or ignore the fields directly from the equation as follows:


    (function(){
    let result = SUM(fieldname1, fieldname2);
    if(AND(6<=result, result<=9)) {
    ACTIVATEFIELD(fieldname3|n);
    ACTIVATEFIELD(fieldname4|n);
    ACTIVATEFIELD(fieldname5|n);
    } else {
    IGNOREFIELD(fieldname3|n);
    IGNOREFIELD(fieldname4|n);
    IGNOREFIELD(fieldname5|n);
    }

    return result;
    })()

    Or other rules as complex as you need.

    Best regards.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.