MicrostockGroup Sponsors

Search Box

Started by MinkyMooMedia, August 07, 2013, 17:03

Previous topic - Next topic

MinkyMooMedia

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

cathyslife

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.
#boycottShutterstock   #shutterstockBoycott

Anita Potter

It is a CSS fix


#symbiostock_main_search #select_type{
display: none;
}


It's buried in another thread but I had my CSS file handy.

jsfoto

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" />

Roberto

Quote from: jsfoto on August 08, 2013, 20:24
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" />
Roverto