Skip to content

Instantly share code, notes, and snippets.

@katyayu
Created January 15, 2018 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katyayu/08c31c62151ef0c23ebc6c9555df7a5f to your computer and use it in GitHub Desktop.
Save katyayu/08c31c62151ef0c23ebc6c9555df7a5f to your computer and use it in GitHub Desktop.
{% javascript %}
jQuery(document).ready(function($) {
// PRODUCTS VIEW GRID/LIST
if ( typeof $.cookie('productSortView') == 'undefined' ) {
$.cookie('productSortView', 'grid', {path: '/'});
}
else if ( $.cookie('productSortView') == 'list' ) {
$('#view_grid').removeClass('active');
$('#view_list').addClass('active');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment