• Resolved G

    (@glienhard)


    Etoile,

    I found a bug when using custom css to hide fields on the registration form. If there is a description set on the field, there is no way to hide it. Could you add an id tag to description, that way it can also be hidden?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Contributor etoilewebdesign

    (@etoilewebdesign)

    Hi Garry,

    We’ll definitely look into adding a unique ID to the span that houses the description. It might be simpler, though if we just added unique IDs to the overall “feup-pure-control-group” div that gets created for each field.

    In the meantime, one way you could try isolating the specific field – and its input, label and description – would be to count to see which number field it is and then isolate that with CSS. For example, let’s say the field you want to hide is the 7th field in your form, then you could try something like:

    .feup-pure-control-group:nth-of-type(7) {
    display: none;
    }
    
Viewing 1 replies (of 1 total)

The topic ‘Custom css to hide fields’ is closed to new replies.