Xếp theo:
- Giá tăng dần
- Giá giảm dần
- Bán chạy
jQuery( function( $ ) {
$( '.woocommerce-ordering' ).on( 'click', 'li', function() {
if (typeof $(this).attr('selected') == 'undefined') {
var orderby = $(this).data('value');
$('input[name="orderby"]').val(orderby);
$( this ).closest( 'form' ).submit();
}
});
})