Forums › Forums › Search & Filter Pro › Result cannot update when using a shortcode
Tagged: shortcode
- This topic has 5 replies, 2 voices, and was last updated 7 years, 10 months ago by Anonymous.
-
Trevor(Private) January 30, 2017 at 12:21 pm #86666
It appears to be some javascript code in the page itself (not in an external asset file):
$( "area" ).mouseover(function() { myInit(); myHover(this); }); $( "area" ).mouseout(function() { myInit(); myLeave(this); });
The use of
$
is often not allowed with jQuery, so it would need to be:jQuery( "area" ).mouseover(function() { myInit(); myHover(this); }); jQuery( "area" ).mouseout(function() { myInit(); myLeave(this); });
Maybe a plugin like this:
http://mattstow.com/experiment/responsive-image-maps/rwd-image-maps.html
Anonymous(Private) February 1, 2017 at 3:06 pm #87388Hi Trevor,
Thank you for your reply.
However, it is not the case. I know the javascript error which is from another plugin.
I got hints from another forum post that the problem is caused by the plugin polylang.
https://support.searchandfilter.com/forums/topic/results-not-updating-when-using-ajax/Good news! The latest version 2.3.1 (just release) has fixed the issue.
Thank you so much for the support!
🙂 -
AuthorPosts