Jump to content
  • 0

Problem z blokiem filtrów nawigacyjnych.


filtrytotu

Question

Witam

Mam problem z blokiem filtrów nawigacyjnych a mianowicie nie działa tak jak powinna lista rozwijana filtrów.

Można zobaczyć tutaj: http://www.filtrygd.vot.pl/siatki/index.php?id_category=52&controller=category#

Problem pojawia się także na standardowym szablonie.

Zrobiłem dla testów inny sklep z innymi produktami i problem też się pojawia.

Presta, której dotyczy ten problem to 1.6.14 a Blok filtrów nawigacyjnych v2.1.2, wcześniejsza wersja filtrów posiada ten sam błąd.

Zna może ktoś ten problem i wie jak go naprawić?

Liczę na pomoc i pozdrawiam.

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Problem rozwiązany, dla potomnych podaje rozwiązanie:

w themes/twoja-templatka/js/modules/blocklayered znajduje się plik blocklayered.js

w nim trzeba zamienić tą linijkę kodu:

 

$(document).on('click', '#layered_form .select, #layered_form input[type=checkbox], #layered_form input[type=radio]', function(e) {

        reloadContent(true);
    });

 

na

 

$(document.body).on('change', '#layered_form .select', function(e) {

        reloadContent(true);
    
});

$(document).on('click', '#layered_form input[type=checkbox], #layered_form input[type=radio]', function(e) {

        reloadContent(true);
    });

 

zmiana kodu pomaga w wersji presty 1.6.0.14, być może w innych też zadziała

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...