X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   Is it possible to sort products by name and price only? (https://forum.x-cart.com/showthread.php?t=73895)

john.hodson@iinet.net.au 04-25-2016 11:19 PM

Is it possible to sort products by name and price only?
 
Hi there,

Just wondering if there are codes to put in the Custom CSS to only allow sorting of the products by only "Name" and "Price"? (At the moment, the standard template allows "Newest first", "Price", "Name" and "Sales".)

Thank you in advance.
John

qualiteam 04-26-2016 11:32 PM

Re: Is it possible to sort products by name and price only?
 
Try the following code:
Code:

.sort-box .display-sort li:nth-child(2),
.sort-box .display-sort li:nth-child(3) {
  display: none;
}


The above code should remove the 2nd and 3rd items in the list of available sort options.
Change it to hide the items that you don't need.

john.hodson@iinet.net.au 04-26-2016 11:40 PM

Re: Is it possible to sort products by name and price only?
 
Perfect. That works well. Thank you very much Alex.

Cheers,
John


All times are GMT -8. The time now is 11:01 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.