Como posso excluir o campo "Preço" do formulário que estou utilizando?

  • Roxo
    Asked on February 16, 2020 at 8:58 AM

    O Objetivo é excluir a palavre "free", conforme modelo abaixo.

    Jotform Thread 2165433 Screenshot
  • Albert_G
    Replied on February 16, 2020 at 9:51 AM

    Hi Roxo,

    This can be done by injecting CSS to your form. How to Inject Custom CSS Codes

    First, you need to get the field ID of the free items.

    Go to Properties > Advanced tab > Field Details.
    1581864591field id Screenshot 10

    Then you'll need to add this code to your form's CSS. 

    #input_1_1001_price{
      display: none;
    }

    You'll need to do this to all free products one by one.

    Thank you.


  • Roxo
    Replied on February 17, 2020 at 9:50 AM
    Olá
    Consegui exito parcial.Das três imagens, em apenas uma foi suprimido o termo free. Ver imagem.
    Ver onde foi inserido o código fornecido
    Em Dom, Fev 16, 2020 às 11:51, JotForm escreveu: A new response has been received: (//www.jotform.com) Answered by Albert_G
    Hi Roxo,
    This can be done by injecting CSS to your form. How to Inject Custom CSS Codes (https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes)
    First, you need to get the field ID of the free items.
    Go to Properties > Advanced tab > Field Details.
    Then you'll need to add this code to your form's CSS.
    #input_1_1001_price{
    display: none;
    }
    You'll need to do this to all free products one by one.
    Thank you.
    View this thread on browser » (http://www.jotform.com/answers/2165433-Como-posso-excluir-o-campo-Pre-o-do-formul-rio-que-estou-utilizando) Unsubscribe Thread (http://www.jotform.com/answers/2165433-Como-posso-excluir-o-campo-Pre-o-do-formul-rio-que-estou-utilizando?k=a2ac0dfddaf4525fe906945d400308c1&unsubscribe=) 1581864661
    ...
  • Richie JotForm Support
    Replied on February 17, 2020 at 11:03 AM

    You may try this custom CSS

    .form-product-details {
      
        display: none !important;
    }

    Guide:https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Please give it a try and let us know how it goes.

  • Roxo
    Replied on February 19, 2020 at 5:50 AM
    Olá
    Estou conseguindo fazer as exclusões da palavra "preço" em quase todos os formulários. Porém nos formulários que tem mais itens, não está sendo concluída a etapa.
    Ver anexo
    Em Seg, Fev 17, 2020 às 13:03, JotForm escreveu: A new response has been received: (//www.jotform.com) Answered by Richie_P
    You may try this custom CSS
    .form-product-details {
    display: none !important;
    }
    Guide:https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes (https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes)
    Please give it a try and let us know how it goes.
    View this thread on browser » (http://www.jotform.com/answers/2165433-Como-posso-excluir-o-campo-Pre-o-do-formul-rio-que-estou-utilizando) Unsubscribe Thread (http://www.jotform.com/answers/2165433-Como-posso-excluir-o-campo-Pre-o-do-formul-rio-que-estou-utilizando?k=a2ac0dfddaf4525fe906945d400308c1&unsubscribe=) 1581955432
    ...
  • Richie JotForm Support
    Replied on February 19, 2020 at 7:08 AM

    Can you please share the form in which the "free" price is still showing?

    The custom CSS should work on all forms with products details.

    .form-product-details {
      
        display: none !important;
    }

    Looking forward for your response.