Jump to content
  • 0

Zmiana widok z domyślnego grid na list.


alemoto

Question

Cześć, 

chciałbym zmienić domyślny widok produktów z grid na list.

 

Znalazłem odpowiedni folder z kodem grid/list ale nie wiem co zrobić by widok uległ zmianie.

W folderze custom.js mam kod gdzie jest grid/list - nie wiem czy na 100% on odpowiada za ten widok ale nigdzie indziej go nie znalazłem. 

Dodam że szablon jest niestandardowy. 

Czy jest możliwa jakaś prosta zmiana by zmienić domyślny widok?

 

 

Gdyby był ktoś chętny zerknąć to poniżej jest część kodu.

 

 

function bindGrid()

{

    var display_product= getCookie('display_product');

    if(display_product=='list')

        display('list');

   

    $(document).on('click','#grid',function(e){

        e.preventDefault();

        display('grid');

    });

 

    $(document).on('click','#list',function(e){

        e.preventDefault();

        display('list');

    });

}

 

Edited by alemoto (see edit history)
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Rozwiązanie:

 

Poprawiony kod w pliku global.js lub custom.js

W moim przypadku kod był w custom.js

Widok produktów automatycznie zmienia się z domyślnego grid na list.

 

 

function bindGrid() {
    var display_product = getCookie('display_product');

    if (display_product === 'list' || !display_product) {
        display('list');
    } else {
        display('grid');
    }

    $(document).on('click', '#grid', function(e) {
        e.preventDefault();
        display('grid');
    });

    $(document).on('click', '#list', function(e) {
        e.preventDefault();
        display('list');
    });
}

 

Edited by alemoto (see edit history)
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...