简体   繁体   中英

Shopify/Liquid related

I'd like to know how I could possibly rearrange the order of a list in Shopify. Now please do note that I have to use the default methods in Liquid as my boss doesn't let me create my own ones. And I also need to override the default order which is set in the admin panel. So is there a way to override it or how could I do it in Javascript? Thanks in advance, regards.

[SOLUTION] I used the tinysort JQuery plugin ( http://tinysort.sjeiti.com/ )

$(document).ready(function() {
  $('table.tables').tsort({data:'price', order:'asc'});
});

This is if you have tables with the class "tables" and with the attribute data-price. The .ready is so that all DOMs and everything will be loaded before we execute the sorting. Hope someone will find this helpful.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM