Hello,
This issue occured because your K2 theme overrided markup of pagination, so javascript to make ajax pagination did not work.
To resolve this issue, please open the file:
modules/mod_jak2filter/assets/js/jak2filter.js
Find the code snippet:
var pages = container.find('ul.pagination-list li a');
if(!pages.length) {
pages = container.find('.k2Pagination ul.pagination li a');
}
And add this code below after it:
if(!pages.length) {
pages = container.find('ul.pagination li a');
}
PS: I have just installed the latest version of JA K2 filter (version 1.1.5) on your site, and it overrided your customization on search form here
http://devsite.discoverwish.com/en/jak2filter.html?isc=1
Please help me to get it back from your back-up.
Next times, please override template files of extension in your template, so it won’t be overrided when you upgrade extensions to new versions.