Hi,
You need to make a change to the search sidebox template. The file you need to change is includes/templates/YOUR_TEMPLATE/sideboxes/tpl_search.php . You may have to copy the file there from includes/templates/template_default/sideboxes if you have not already modified that file. In the file you will see a line that says...
PHP Code:
$content .= zen_draw_hidden_field('search_in_description', '1') . zen_hide_session_id();
...change the '1' to a '0' so that you get...
PHP Code:
$content .= zen_draw_hidden_field('search_in_description', '0') . zen_hide_session_id();
Regards,
Christian.