I’m encountering an HTML standard error related to the tags in several brick files: filter-search.php, filter-datepicker.php, and filter-range.php. The issue arises from the use of the tag.
To fix this, for example the filter-search.php, I modified the following line:
//echo "<input {$this->render_attributes('_root')}></input>";
Update it to:
echo "<input {$this->render_attributes('_root')} />";
This adjustment will correct the HTML syntax by ensuring the <input>
tags are self-closing.