Found the answer myself
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get');
works fine now
Found the answer myself
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get');
works fine now
Thanks for the heads up, i can across this error myself by accident and this response ranked well in google.
To further help others the file is :
/public_html/includes/templates/YOUR_TEMPLATE/sideboxes/tpl_search_header.php
change this
Code:$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
for above.
Was present in my 1.5 version
i also had to change my template as i had a "buy both now" button
tpl_shopping_cart_default.php
from
to:Code:$action = zen_href_link(zen_get_info_page((int)$product['id']), zen_get_all_get_params(array('action')) . 'action=multiple_products_add_product');
to get rid of that ssl error too.Code:$action = zen_href_link(zen_get_info_page((int)$product['id']), zen_get_all_get_params(array('action')) . 'action=multiple_products_add_product',$request_type);
Last edited by Calljj; 22 Feb 2015 at 06:01 PM. Reason: info