MicrostockGroup

Microstock Photography Forum - General => Symbiostock => Symbiostock - Development Area => Topic started by: MinkyMooMedia on August 07, 2013, 11:03

Title: Search Box
Post by: MinkyMooMedia on August 07, 2013, 11:03
Hi

Could someone please point me in the right direction on how to remove the search option for blog, I would like to make the search box at the top just a simple search box with no options so that it just searches the images.

Thanks
Brian
Title: Re: Search Box
Post by: cathyslife on August 07, 2013, 11:32
Search the symbiostock>technical support or development section. I know others have asked it and hopefully there is a separate thread for the answer. I know Amanda_K answered one time, I think it is a CSS fix.
Title: Re: Search Box
Post by: Anita Potter on August 07, 2013, 11:46
It is a CSS fix

Code: [Select]
#symbiostock_main_search #select_type{
display: none;
}

It's buried in another thread but I had my CSS file handy.
Title: Re: Search Box
Post by: jsfoto on August 08, 2013, 14:24
just go to searchform_symbiostock.php

row 27-33

<select id="select_type" name="post_type" >

        <option value="image">Images</option>

        <option value="post">Blog</option>

</select>

should be replaced by:

<input type="hidden" name="post_type" value="image" />
Title: Re: Search Box
Post by: Roberto on August 08, 2013, 14:58
just go to searchform_symbiostock.php

row 27-33

Thanks, I was thinking how to remove it  ;)

<select id="select_type" name="post_type" >

        <option value="image">Images</option>

        <option value="post">Blog</option>

</select>

should be replaced by:

<input type="hidden" name="post_type" value="image" />