Hey all,
I'm struggling with this xf link builder - I have all my other link builders working correctly (navigating to sub-pages / thread pages etc), but my "search query" search link isn't working correctly.
When the Search button is clicked, I end up on
Do I need to change any of the route parameters to allow this?
Any help appreciated!
I'm struggling with this xf link builder - I have all my other link builders working correctly (navigating to sub-pages / thread pages etc), but my "search query" search link isn't working correctly.
HTML:
<form id="form" action="{{ link('note/search', $query ) }}">
<input type="search" id="query" name="q" placeholder="Search...">
<button>Search</button>
</form>
When the Search button is clicked, I end up on
index.php?q=query
, vs where I'm expecting to end up: index.php/note/search&q=query
Do I need to change any of the route parameters to allow this?
Any help appreciated!