Eliminar asterisco en campo requerido

  • centrodesarrollo
    Fecha de consulta 28 de enero de 2024, 17:48

    Buenas tardes,
    Como puedo eliminar el asterisco (*) que se queda en rojo o cambiarlo de color para que no sea notorio.

    Eliminar asterisco en campo requerido Image 1 Screenshot 20

  • Justin_E Jotform Support
    Fecha de respuesta 28 de enero de 2024, 20:07

    Hi centrodesarrollo,

    Thanks for reaching out to Jotform Support. Unfortunately, our Spanish Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Spanish, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.

    Now, let me help you with your question. The red asterisk showing on your form is an indication that the field is a required field. To remove this, make sure that you turn off "Required" in the field's option.Eliminar asterisco en campo requerido Image 1 Screenshot 20

    Give it a try and let us know if there's anything else we can help you with.

  • centrodesarrollo
    Fecha de respuesta 29 de enero de 2024, 8:11

    El siguiente widget de Hoja de calculo de formulario.

    Eliminar asterisco en campo requerido Image 1 Screenshot 30

    Pero necesito eliminar ese (*) asterisco en rojo pero que se mantenga el campo obligatorio

    Eliminar asterisco en campo requerido Image 2 Screenshot 41

  • Catherine Jotform Support
    Fecha de respuesta 29 de enero de 2024, 10:40

    Hola centrodesarrollo,

    Muchas gracias por la aclaración. Para poder ocultar el asterisco debemos agregar el siguiente Código CSS. Te enseño como:

    • En el Creador de Formularios, da clic en el Diseñador de Formulario.
    • Bajo la pestaña de Estilo, desliza hasta el campo de Insertar CSS Personalizado.
    • Ingresa el siguiente código CSS:
    #label_85 {
        visibility : hidden;
    }

    Eliminar asterisco en campo requerido Image 1 Screenshot 20

    Pruébalo y déjanos saber si tienes más preguntas.

  • centrodesarrollo
    Fecha de respuesta 29 de enero de 2024, 11:56

    Eliminar asterisco en campo requerido Image 1 Screenshot 20
    Al añadir el código aun tengo el mismo inconveniente
    Les comparto el formulario:

    https://form.jotform.com/240277297879071

  • Rayzel Jotform Support
    Fecha de respuesta 29 de enero de 2024, 14:08

    Hi centrodesarrollo,

    Thanks for getting back to us. I'm sorry you're having trouble with this. I checked your form and I saw that you added the incorrect label ID to your injected CSS. Please change the label ID to #label_5 instead of #label_85. Let me walk you through it:

    1. To check the label ID, you'll have to check the Field ID of the field. Click on the gear icon to open the Properties panel on the right.

    2. Click on the Advanced tab.

    3. In The Field IDs section, since the ID is #input_5, then the label is most likely #label_5.

    Eliminar asterisco en campo requerido Image 1 Screenshot 30

    Change the number of the label ID, and it should be good to go. Check out the screencast below:

    Eliminar asterisco en campo requerido Image 2 Screenshot 41

    Give it a try and reach out again if you have any other questions.

  • centrodesarrollo
    Fecha de respuesta 5 de febrero de 2024, 12:32

    Con el nombre de este campo

    Eliminar asterisco en campo requerido Image 1 Screenshot 30

    e integrando el código
    Eliminar asterisco en campo requerido Image 2 Screenshot 41

    aun me sigue apareciendo los *

  • Justin_E Jotform Support
    Fecha de respuesta 5 de febrero de 2024, 12:54

    Hi centrodesarrollo,

    Thanks for getting back to us. After checking your form, I have cloned your form to try and create a workaround for you. To hide the asterisk on the required field but still keep it required, you will need to add this CSS code to your form designer:

    #label_5 span.form-required{
     display: none;
    }

    Eliminar asterisco en campo requerido Image 1 Screenshot 30

    Here is the result:

    Eliminar asterisco en campo requerido Image 2 Screenshot 41

    Here is the cloned form I have made a workaround with for your reference.

    Give it a try and let us know if there's anything else we can help you with.

  • centrodesarrollo
    Fecha de respuesta 5 de febrero de 2024, 13:01

    Eliminar asterisco en campo requerido Image 1 Screenshot 20

    Cuál es el error? por qué no se elimina *?
    Ya agregué el código css

  • Justin_E Jotform Support
    Fecha de respuesta 5 de febrero de 2024, 13:10

    Hi centrodesarrollo,

    Thanks for getting back to us. The asterisk will still show on the form builder as we are only overriding the code and it is a required field. Can you please try opening the published form to see if you still see the asterisk? If the asterisk still shows, please let us know so we can help you further.

    Give it a try and let us know if there's anything else we can help you with.

  • centrodesarrollo
    Fecha de respuesta 28 de febrero de 2024, 9:43

    Existe alguna forma de eliminar los * en rojo de todo el documento, estoy creando un formulario que contiene más de 500 campos y es demorado eliminar uno a uno.

    https://form.jotform.com/240277297879071

  • Justin_E Jotform Support
    Fecha de respuesta 28 de febrero de 2024, 10:55

    Hi centrodesarrollo,

    Thanks for getting back to us. Just to make sure we're on the same page, do you want to remove all the asterisks on the required field on your form? If so, you can do that by adding this CSS code to your form designer:

    .form-required {
      display : none !important;
    }

    Eliminar asterisco en campo requerido Image 1 Screenshot 30

    This will hide the asterisk for all the required fields on your form. Here is the result:Eliminar asterisco en campo requerido Image 2 Screenshot 41

    Here is the cloned form I have made a workaround with for your reference.

    Give it a try and let us know if there's anything else we can help you with.

  • centrodesarrollo
    Fecha de respuesta 28 de febrero de 2024, 11:58

    Me funciono de maravilla, GRACIAS!