Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
888 views
in Q2A Core by
this is the output of the search filed. i'm trying to figure how i can change the value without hacking it.

$this->output('<INPUT '.$search['field_tags'].' VALUE="'.@$search['value'].'" CLASS="qa-search-field"/>');

i'm quite new here, so punch me gently, poor favor :)

1 Answer

0 votes
by

Either in the language files, or just by placing the code above in qa-theme.php and changing VALUE to something you like.

For example:

VALUE="'.@$search['value'].'"

becomes

VALUE="Search now!"

...