HTML 5 Error – Empty Action Attribute
-
Hi !
W3C HTML 5 checker report an error on how the search form is returned.
Bad value for attribute action on element form: Must be non-empty.
From line 444, column 5; to line 444, column 58 get">? <form action="" method="post" class="searchandfilter">?
Indeed, action=”” is invalid.
According to my template theme, this could be added in the code source to ppoduce valid search field:
action="<?php echo esc_url( home_url( '/' ) ); ?>">
It only has to be included on the search-filter.php file line 1092 which currently looks like like this
$returnvar .= ' <form action="" method="post" class="searchandfilter'.$addclass.'"> <div>';
Could you please include this simple fix ?
HTML 5 error are bad for SEO and for compatibility ??
Thanks for listening !
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘HTML 5 Error – Empty Action Attribute’ is closed to new replies.