codochi Posted September 11, 2015 Share Posted September 11, 2015 Hello, I opened adminproductscontroller.php but I don't know how to edit default sort by ID (descrease). Please help me Link to comment Share on other sites More sharing options...
NemoPS Posted September 12, 2015 Share Posted September 12, 2015 Try setting it after this: if ($orderByPriceFinal == 'price_final') { $orderBy = 'id_'.$this->table; $orderWay = 'ASC'; } orderBy, to whatever column you need. Right after that comment. Please be aware this would override all sort by options. Otherwise have it check for orderBy being null 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now