Hi,
The same as for the backend, that I send you
Sorry, you have right, only read the last answer.
Problem:
you have a template override for the user list view, from version 2.x.x we recommend to delete all template overrides (
http://docs.easy-profile.com/index.php/article/upgrade-1x-2x).
About user list, from version 1.x to version 2.x, basically we have changed the method to send parameter from a search form (1.x use POST and 2.x use GET).
This solve problem with browser back button.
Solution without delete all template overrides:
You can simply change form method from POST to GET:
- Open file at /templates/jp-hifi/html/com_jsn/list/table_search.php
- Replace this
method="post"
with this:
method="get"