• Resolved rfmf

    (@rfmf)


    Hey, thank you for the plugin.
    Is it possible, that the conditional “AND” is no longer working? I am using cascading options with 3 steps. I got 3 columns (bootstrap)- The first two hold dropdowns and the last shows some text-div.

    Tariff (3 Options) – Duration (5 Options for each Tariff) – Price as text-div.

    The final price tags all have their own group and everything has unique names. Nonetheless as soon as i chose the tariff, the duration dropdown shows up correctly, but also all 5 Options of that tariff at once.

    Tested in Firefox and Chrome.


    And btw: In the backend the “Show” title is displayed above the group-dropdown, causing a postponed form.

    Thank you for your efforts!

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

    (@jules-colle)

    should still work. Can you share a link to the form?

    Thread Starter rfmf

    (@rfmf)

    Hey, unfortunately it is a local installation. But i figured out, that it works without combining conditions. If someone has the same problem, here is the markup:

    <div class=”col-xl-4 col-md-4 mb-50″>
    <label>tariff</label>
    [select tariff first_as_label “choose tariff” “tariff 1” “tariff 2” “tariff 3″]
    </div>
    <div class=”col-xl-4 col-md-4 mb-50”>
    <label>package</label>
    [group sel-t1 clear_on_hide]
    [select t1 first_as_label “package” “t1A” “t1B” “t1C”][/group]
    [group sel-t2 clear_on_hide]
    [select t2 first_as_label “package” “t2A” “t2B” “t2C”][/group]
    [group sel-t3 clear_on_hide]
    [select t3 first_as_label “package” “t3A” “t3B” “t3C”][/group]
    </div>
    <div class=”col-xl-4 col-md-4 mb-50″>
    [group group-t1 clear_on_hide]
    [group t1A clear_on_hide]T1A[/group]
    [group t1B clear_on_hide]T1B[/group]
    [group t1C clear_on_hide]T1C[/group]
    [/group]

    [group group-t2 clear_on_hide]
    [group t2A clear_on_hide]T2A[/group]
    [group t2B clear_on_hide]T2B[/group]
    [group t2C clear_on_hide]T2C[/group]
    [/group]

    [group group-t3 clear_on_hide]
    [group t3A clear_on_hide]T3A[/group]
    [group t3B clear_on_hide]T3B[/group]
    [group t3C clear_on_hide]T3C[/group]
    [/group]
    </div>

    And conditions:

    show [sel-t1] if [tariff] equals “tariff 1”
    show [sel-t2] if [tariff] equals “tariff 2”
    show [sel-t3] if [tariff] equals “tariff 3”
    show [group-t1] if [tariff] equals “tariff 1”
    show [group-t2] if [tariff] equals “tariff 2”
    show [group-t3] if [tariff] equals “tariff 3”
    show [t1A] if [t1] equals “t1A”
    show [t1B] if [t1] equals “t1B”
    show [t1C] if [t1] equals “t1C”
    show [t2A] if [t2] equals “t2A”
    show [t2B] if [t2] equals “t2B”
    show [t2C] if [t2] equals “t2C”
    show [t3A] if [t3] equals “t3A”
    show [t3B] if [t3] equals “t3B”
    show [t3C] if [t3] equals “t3C”

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conditional logic “AND” broken?’ is closed to new replies.