Jump to content

[Solved] Attributes alphabet order


jeff8899

Recommended Posts

You could override the getAttributesGroups function in classes/Product.php so you can change how the attributes are ordered:

 

At present it orders by:

ORDER BY ag.`position` ASC, a.`position` ASC, agl.`name` ASC'

You could change this to:

ORDER BY ag.`position` ASC, agl.`name` ASC'

so that it ignores the position of the attributes in a group and just orders them by name.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...