Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue with search not working from category page #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
{% if not DISABLE_SEARCH %}
<div class="uk-panel uk-panel-box">
<form class="uk-search" action="search.html" data-uk-search>
<input class="uk-search-field tipue_search" type="search" name="q" id="tipue_search_input" autocomplete="off" placeholder="Search...">
<input class="uk-search-field tipue_search" type="{{ SITEURL }}/search" name="q" id="tipue_search_input" autocomplete="off" placeholder="Search...">
</form>
</div>
{% endif %}
Expand Down Expand Up @@ -167,7 +167,7 @@ <h3 class="uk-panel-title">Contacts</h3>
<div class="uk-offcanvas-bar">

{% if not DISABLE_SEARCH %}
<form class="uk-search" action="search.html" data-uk-search>
<form class="uk-search" action="{{ SITEURL }}/search.html" data-uk-search>
<input class="uk-search-field" type="search" name="q" id="tipue_search_input" autocomplete="off" placeholder="Search...">
</form>
{% endif %}
Expand Down