• Resolved italloduarte

    (@italloduarte)


    Problem rescanning select group

    Hello, I’m developing a form where the user selects the location and depends on the location, shows different plans for each selected location.

    So far so good.

    However, when the form is sent I can not retrieve the data from the select [form-plano] according to the chosen locale. The field always comes in white.

    Would you help me?

    Follow the code below

    Nome Completo: [text* form-nome]
    Data de Nascimento:[date* form-data-nascimento]
    Endere?o Residencial: [text* form-endereco]
    Bairro: [text* form-bairro]
    CEP: [tel* form-cep]
    Telefone Fixo: [tel form-telefone-fixo]
    Telefone Celular: [tel* form-telefone-celular]
    E-mail: [email* form-email]
    <p>Qual a sua localidade?

    [select* select_localidade first_as_label “– Escolha a Localidade–” “Juazeiro” “Sobradinho” “Jardim Primavera” “Mani?oba/Rodeadouro” “Salitre”]</p>

    [group select-localidade_juazeiro]
    <p>Plano:<br /> [select* form-plano “– Selecione o Plano Desejado –” “15 MEGA” “20 MEGA” “30 MEGA” “60 MEGA” “100 MEGA” “150 MEGA” “200 MEGA” “300 MEGA” “500 MEGA”]</p>
    [/group]

    [group select-localidade_sobradinho]
    <p>Plano:<br /> [select* form-plano “– Selecione o Plano Desejado –” “3 MEGA” “5 MEGA” “10 MEGA” “15 MEGA” “25 MEGA” “35 MEGA” “50 MEGA” “100 MEGA”]</p>
    [/group]

    [group select-localidade_jardim_primavera]
    <p>Plano:<br /> [select* form-plano “– Selecione o Plano Desejado –” “6 MEGA” “8 MEGA” “12 MEGA” “18 MEGA” “25 MEGA”]</p>
    [/group]

    [group select-localidade_manicoba]
    <p>Plano:<br /> [select* form-plano “– Selecione o Plano Desejado –” “5 MEGA” “8 MEGA” “10 MEGA” “15 MEGA” “20 MEGA”]</p>
    [/group]

    [group select-localidade_salitre]
    <p>Plano:<br /> [select* form-plano “– Selecione o Plano Desejado –” “5 MEGA” “8 MEGA” “10 MEGA” “15 MEGA” “20 MEGA”]</p>
    [/group]

    Data de Vencimento: [select* form-data-vencimento “1” “2” “3” “4” “5” “6” “7” “8” “9” “10” “11” “12” “13” “14” “15” “16” “17” “18” “19” “20” “21” “22” “23” “24” “25” “26” “27” “28” “29” “30” “31”]

    [submit “Solicitar”]

    Follow the code to send to the email

    Dados de solicita??o de Nova Ades?o através do site da Kasatech:

    Nome Completo: [form-nome]
    Data de Nascimento: [form-data-nascimento]
    Endere?o Residencial: [form-endereco]
    Bairro: [form-bairro]
    CEP: [form-cep]
    Telefone Fixo: [form-telefone-fixo]
    Telefone Celular: [form-telefone-celular]
    E-mail: [form-email]
    Localidade: [select_localidade]
    Plano Escolhido: [form-plano]
    Data de Vencimento: [form-data-vencimento]


    Este e-mail foi enviado de um formulário de contato em Kasatech (https://www.kasatech.net)

    The page I need help with: [log in to see the link]

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

    (@jules-colle)

    Your names need to be unique. You cannot have multiple fields called form-plano in your form. Rename them to form-plano-1 form-plano-2 and so on.

    Thread Starter italloduarte

    (@italloduarte)

    Ok, I made the change of the fields and I put as informed:

    [form-plano1]
    [form-plano2]
    [form-plano3]
    [form-plano4]
    [form-plano5]

    How will I have to put it in the “Mail” – Message Body?

    Application Data for New Membership through the Kasatech website:

    Full Name: [form-name]
    Date of Birth: [form-date-birth]
    Residential Address: [form-address]
    Neighborhood: [form-bairro]
    CEP: [form-cep]
    Phone: [form-phone-fixed]
    Cell Phone: [form-celular-phone]
    E-mail: [form-email]
    Location: [select_locality]
    Plane selected: [form-plano1] [form-plano2] [form-plano3] [form-plano4] [form-plano5]
    Maturity Date: [form-date-maturity]

    When you enter this way, if you have selected the locality, it will show the value selected in [form-plano2], but the others will come with the value of – Select the Desired Plan -.

    How to only send to the email, the form that has been selected?

    Plugin Author Jules Colle

    (@jules-colle)

    Instead of [form-plano1] [form-plano2] [form-plano3] [form-plano4] [form-plano5]

    write this:
    [select-localidade_juazeiro][form-plano2][/select-localidade_juazeiro][select-localidade_sobradinho][form-plano2][/ select-localidade_sobradinho] ...

    Thread Starter italloduarte

    (@italloduarte)

    Now it worked. Thank you very much!

    Plugin Author Jules Colle

    (@jules-colle)

    you’re welcome. feel free to leave a review if you like the plugin

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problem rescanning select group’ is closed to new replies.