Hello,
i want to hide or to remove the asterisk (*) that shows at the end of placeholder input field. That star shows because the field is required.
Thank you
Hey Designweb,
I can’t see an asterisk at the end of any of the fields, I’m guessing you managed to get it working yourself?
Best regards,
Rikard
Hello,
at the end of the page CONTACT US – SUBSCRIBE in the input field with light grey color text Name@…..*
Because the field has light grey text you don’t see the placeholder text. The asterisk (*) is at the end of placeholder text.
Thank you
Hello,
Do you have any idea?
Hi,
Try to add this code at the bottom of functions.php:
function remove_asterisk_script(){
?>
<script type="text/javascript">
(function($){
function remove_asterisk() {
jQuery('.page-id-340 #after_section_1 .avia_ajax_form #avia_0_2').attr('placeholder', 'N (Email address hidden if logged out) ');
}
remove_asterisk();
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'remove_asterisk_script');
Let us know if this helps.
Best regards,
Nikko
Hello.
That’s worked fine.
Thank you very much Nikko.