Page 1 of 1

[solved]Just upgraded to 1.5, have Search form bugs can you please help me fix?

Posted: Thu Feb 05, 2009 6:29 am
by Stoob
Hi thanks for reading!

I finally got our site upgraded to 1.5.2 from (will you believe it!!?) 1.0.8!!

Woo, it went really smoothly for the most part, coz CMSMS is awesome, but I have a tiny quirk...can you please help?

The site is http://www.rcusa.org first off...

BUG: The search input box is missing in the top left.  It *was* there... Not sure why it disappeared...  The CSS isn't hiding it, the <input type="text" code just isn't there!  This is my search template:

Code: Select all

{$startform}

{$label}: {$inputbox}<input name="submit" id="submit_go" value="GO" type="submit" />{$hidden}

{$endform}
I reviewed the Search module docs and everything looks normal.  Am I missing something?  Can you please help?  Thanks!

Re: Just upgraded to 1.5, have Search form bugs, can you please help me fix?

Posted: Thu Feb 05, 2009 6:45 am
by Rolf
Hey,

This is the search template on recent versions:

Code: Select all


{$startform}

    <label for="{$search_actionid}searchinput">{$searchprompt}</label>: <input type="text" id="{$search_actionid}searchinput" name="{$search_actionid}searchinput" size="20" maxlength="50" value="{$searchtext}" {$hogan}/><input name="submit" value="{$submittext}" type="submit" />
{if isset($hidden)}{$hidden}{/if}

{$endform}

Perhaps it helps you...

Rolf  :D

Re: Just upgraded to 1.5, have Search form bugs, can you please help me fix?

Posted: Thu Feb 05, 2009 8:13 am
by Dr.CSS
You should be able to just hit the "Restore To Default" button to get it back...

Re: [solved]Just upgraded to 1.5, have Search form bugs can you please help me fix?

Posted: Thu Feb 05, 2009 6:02 pm
by Stoob
thanks DUDES