I have what I think is a very straightforward piece of code for a simple search on my site:
<div id="search">
{exp:search:simple_form weblog="articles" result_page="search/results" results="10" where="any" search_in="everywhere"}
<input type="text" class="search-text" name="keywords" id="keywords" value="Search this website" />
<input type="image" src="/images/btn-search.gif" class="search-submit" />
{/exp:search:simple_form}
</div>The form field, when displayed, only contains “undefined undefined” and the HTML rendered is this:
<input type="text" class="search-text" name="keywords" id="keywords">The value is missing. I’ve tried removing the value attribute to no avail. Ideas? Thanks!