In YOUR_PRESTASHOP_INSTALLATION/adminYOUR_RANDOM/themes/default/template/helpers/list/list_header.tpl
Find {block name="startForm"} and do following:
1) Change form method="post" to form method="GET"
2) After begining form tag - e.g. after
<form method="GET" action="{$action|escape:'html':'UTF-8'}" class="form-horizontal clearfix" id="form-{$list_id}">
add following code:
{if !empty($smarty.get.id_cms_category)} <input type="hidden" name="id_cms_category" value="{$smarty.get.id_cms_category|@intval}"> {/if} {if !empty($name_controller)} {assign var="controllerName" value=$name_controller} {elseif !empty($smarty.get.controller)} {assign var="controllerName" value=$smarty.get.controller} {/if} {if !empty($controllerName)} <input type="hidden" name="controller" value="{$controllerName|escape:'html':'UTF-8'}"> {/if}
I tried the same you suggest... But the pagination doesn't work...
I have problem with pagination in my backoffice everywhere...when i go to 2nd page, the error occurs saying too many redirects.!
Thanks for the response jave.web