Trying to use the new get_search_form() function on WordPress, I noticed I can't remove the textual label from the search submit button.
Any ideas?
Trying to use the new get_search_form() function on WordPress, I noticed I can't remove the textual label from the search submit button.
Any ideas?
Got it partially working with:
$(document).ready(function(event){
$("input#searchsubmit").attr("value","");
Still, the value disappearance takes WAY too much time. How can I get rid of it in the first place?
the quick and easy is to create a new template named "searchform.php" in your theme directory.
in that way get_search_form() will load your form instead of the default one.