Having an issue with the search widget that’s posted on my website, could someone please give me the proper code for my searchbox.php
<form>
<input type="text" class="st-default-search-input">
<button type="submit">Submit</button>
</form>
Having an issue with the search widget that’s posted on my website, could someone please give me the proper code for my searchbox.php
<form>
<input type="text" class="st-default-search-input">
<button type="submit">Submit</button>
</form>
Hey there, Sly!
Mind giving this a shot? The WordPress plugin looks for the name=“s” attribute, instead of st-default-search-input.
<form>
<input type="text" class="st-default-search-input" name="s">
<button type="submit">Submit</button>
</form>