Hello,
I want to remove all asterisks from contact form *. How can i do that? I try to put that on Quick CSS, but it doesn’t work.
abbr.required {
display: none !important;
}
Thank you.
Hey Designweb,
Since the Hide Form Labels is checked, to remove it you need to modify enfold\framework\php\class-form-generator.php and find this function:
function text($id, $element, $type = 'text')
inside the function find this code (line 359):
$extra = "*";
replace it with:
$extra = "";
Hope this helps.
Best regards,
Nikko
Hello Nikko,
that works perfect for text fields.
Also, to remove the asterisk from textarea field in line 658
$extra = "*";
replace it with:
$extra = "";
Thank you very much for your help.
Hi,
Glad we could help and thanks for sharing the solution for textarea :)
Best regards,
Nikko
Hello,
thank you for your help. You can close it.