Forums Forums Search & Filter Pro Result cannot update when using a shortcode

Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Anonymous
    #86287

    Hi,

    I am trying to display results by “Using a Shortcode”.

    But I have no idea why the results always remain the same after filtering.

    Hope you can help on advice.

    Thanks,
    Anson

    Anonymous
    #86288
    This reply has been marked as private.
    Trevor
    #86303
    This reply has been marked as private.
    Anonymous
    #86306
    This reply has been marked as private.
    Trevor
    #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
    #87388

    Hi 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!
    🙂

Viewing 6 posts - 1 through 6 (of 6 total)