• Resolved zbyneksmetana

    (@zbyneksmetana)


    Sorry for language mistakes. I have two groups in form for example

    <label> Imię i nazwisko (wymagane)
        [text* your-name] </label>
    <label> Adres email (wymagane)
        [email* your-email] </label>
    <label> Temat
        [text your-subject] </label>
    <label> Treść wiadomości
        [textarea your-message] </label>
    
    [group group-dar]
    word1
    [/group]
    
    [group group-dar]
    word2
    [/group]

    and i add condition

    show [group-dar] if [your-name] equals "kowalski"

    When i type “kowalski to [your-name] only word1 appears not word2.

    Is it posible to use the same group in two places. Everything works ok but after some time this problem appear. I dont know what happened – update, plugin conflict ect.

    Thanks,
    Zbynek

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

    (@jules-colle)

    both your groups are called group-dar. Names need to be unique. Either write:

    [group group-dar]
    word1
    [/group]
    
    [group group-dar-2]
    word2
    [/group]

    or

    [group group-dar]
    word1
    word2
    [/group]
Viewing 1 replies (of 1 total)

The topic ‘the same groups in the form’ is closed to new replies.