• Resolved divago

    (@divago)


    Hey there, nice plugin!!

    Is there a way to reset the fields hided from the conditions to avoid mail-tags filled with unnecessary values? Am i doing some naming errors with them?

    Es

    [select test-01 include_blank “01” “02” “03”]

    if [test-01] equals “01” then show [one]
    if [test-01] equals “02” then show [two]
    if [test-01] equals “03” then show [three]

    [group one]
    [select one-01 include_blank “01” “02” “03”]
    [/group-one]

    [group two]
    [select one-02 include_blank “01” “02” “03”]
    [select one-03 include_blank “01” “02” “03”]
    [/group-two]

    [group three]
    [select one-04 include_blank “01” “02” “03”]
    [select one-05 include_blank “01” “02” “03”]
    [select one-06 include_blank “01” “02” “03”]
    [/group-three]

    Thx

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jules Colle

    (@jules-colle)

    in the mail fields the start tag should match the end tag.

    If your group is called g1 for example, in your form this would be [group g1] … [/group]

    In the email it should be [g1] … [/g1]

    In your case I suspect that your groups are called group-one and so on, so you should write

    [group-one]
    ...
    [/group-one]

    You probably just forgot the hyphen in the first tag.

    In case your group is called one, the code should be

    [one]
    ...
    [/one]

    EDIT:: sorry I read your question to fast, looks like your groups are called one, two three. So the code you need is:

    [one]
    ...
    [/one]
    [two]
    ...
    [/two]
    [three]
    ...
    [/three]
    Thread Starter divago

    (@divago)

    Thx for reply!
    we’ve corrected the email tag. now looks good thk!!

    However, using Flamingo, we noticed that the value of the hidden fields is still there. Could be possible to reset the hidden fields when submitting the form so to store just the informations needed?

    thk you!!

    Plugin Author Jules Colle

    (@jules-colle)

    not yet possible, but I’m thinking of adding a setting to remove hidden field on submission.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to reset excluded fields’ is closed to new replies.