Hiding Labels for Certain Fields
Basic Usage
To remove labels, simply delete the H3 tag in the code editor for the field you no longer want the label to show for.
Advanced Techniques
You can also hide labels for multiple fields at once, using CSS.
Let's use a field with a machine name of "expiration_date" as an example. We provide CSS classes on every field and name them based on your machine name. In this case, the class would be .custom-field__expiration_date
. To hide the label for the Expiration Date field, you'd need to add the following CSS to your theme:
.custom-field__expiration_date .custom-field--title {
display: none;
}