Hello,
Clarify your question, please. Where pagination is not working, on back end or front end? If on front end, which widget or shortcode are you using?
Regards.
The front-end pagination dont working
The problem is in that url http://goo.gl/2JluHP (next=siguiente; prev=anterior)
Console chrome gives this errors:
Uncaught TypeError: Cannot read property ‘msie’ of undefined(anonymous function) @ jquery.fancybox-1.3.4.pack.js?ver=1.7.3:18(anonymous function) @ jquery.fancybox-1.3.4.pack.js?ver=1.7.3:46
jquery.address-1.5.js?ver=4.3.1:343 Uncaught TypeError: Cannot read property ‘version’ of undefined(anonymous function) @ jquery.address-1.5.js?ver=4.3.1:343(anonymous function) @ jquery.address-1.5.js?ver=4.3.1:647(anonymous function) @ jquery.address-1.5.js?ver=4.3.1:683
property_overview.js?ver=4.3.1:451 Uncaught TypeError: Cannot read property ‘change’ of undefined
i dont know what you meaning with “widget/shortcode”, i’m only install the plugin and put data on them.
i hope you can help me
Pagination is not working because of javascript errors.
I think, the errors can be related to using of custom jQuery in your theme ( wp-content/themes/rc2/jquery.js?ver=4.3.1 ). You should enqueue jQuery which is provided by WordPress instead.
Also, try to disable Easy Fancybox plugin to be sure that the following error (below) is not related to it:
Uncaught TypeError: Cannot read property ‘msie’ of undefined(anonymous function) @ jquery.fancybox-1.3.4.pack.js?ver=1.7.3:18(anonymous function) @ jquery.fancybox-1.3.4.pack.js?ver=1.7.3:46
Regards.
Thx for your interest, friend.
If i disable Easy Fancybox, the pagination error persists.
I try to enqueue jquery with:
wp_enqueue_script(‘jquery’);
in header.php from my theme, but i dont know how i can to take off the link tag wp-content/themes/rc2/jquery.js?ver=4.3.1
Sorry, i just started soon to programming WP.
I just solved the issue.
The only thing to do was invocate jQuery Migrate plugin AFTER jQuery library and BEFORE the other scripts.
Specifically, the modification was on wp_property/lib/class_core.php
Regards