Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    I see there is a JavaScript error on your website:
    Uncaught TypeError: Cannot read property ‘_super’ of undefined

    For WordPress version 5.9 and greater you should replace the line:

    
       selected.vehicles.sort(this.sortCaseIns);
    

    with:

    
       selected.vehicles.sort($.proxy(this.sortCaseIns, this));
    

    in the file:
    wp-content/plugins/ymm-search/view/frontend/web/main.js

    Then refresh your browser cache.

    Stanislav

    Thread Starter digitaliway

    (@digitaliway)

    Thank you, that worked. Will an update be released to correct that in the future?

    Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    It is the main idea of this plugin. To keep the base version unchanged as long as possible. Because many modifications depend on it.

    You can contact me by email [email protected] if you need more explanation.

    Stanislav

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘error in console not searching with drop menu change’ is closed to new replies.