NOTE: any submits done on an SSL page that goes to a non-ssl, such as the search, will also show these errors ...
You would need to customize the code to handle the changing back and forth between these ...
Example, the tpl_search_header.php has coded:
Code:
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
See if you can use:
Code:
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get');
to fix that ...
There are others like this ... but that will then use the submit on SSL and things like that will remain on SSL until a non-ssl link is clicked ...