I think I fixed the item per page dropdown. Whether or not it broke something else remains to be seen...
In includes/functions/extra_functions/products_pagination_functions.php on line 75, I changed it from
PHP Code:
$dropdown = '<div class="pp_count">' . (($displayForm) ? zen_draw_form('pp_count_form' . $formSuffix, zen_href_link($_GET['main_page'], zen_get_all_get_params()), 'post') : '') . zen_hide_session_id() . zen_draw_hidden_field ('main_page', $_GET['main_page']) . $baseValue;
to
PHP Code:
$dropdown = '<div class="pp_count">' . (($displayForm) ? zen_draw_form('pp_count_form' . $formSuffix, '', 'post') : '') . zen_hide_session_id() . zen_draw_hidden_field ('main_page', $_GET['main_page']) . $baseValue;
The form is a little jumpy now, but it's working.
Bookmarks