Jump to content

attributen sorteren


alicewoman1

Recommended Posts

Hoe kan je de attributen netjes sorteren?

Ik heb bijvoorbeeld de volgende maten aangemaakt

XXS

XS

Small

Medium

Large

XL

 

Hij gooit de maten door elkaar in de shop. Hoe kan ik dit zelf bepalen?

Nu krijg ik het in deze volgorde te zien:

Large

Medium

Small

XL

XS

XXS

 

Ik heb al op het forum gezocht maar geen van de codes werkt bij mij op 1.4.7

Link to comment
Share on other sites

Beste Frens,

Die link had ik gisteren gevonden maar er veranderd niets bij mij. Net nog even opnieuw geprobeerd

 

in /classes/Product.php

 

search for:

public function getAttributesGroups

below that code find the line:

ORDER BY agl.`public_name`, al.`name`');

in my case it was on line 1217

and change it to:

ORDER BY ag.`id_attribute_group`, pa.`id_product_attribute`');

 

then in /controllers/ProductController.php search for:

foreach ($groups AS &$group)

natcasesort($group['attributes']);

in my case it was on line 327-328

and comment these 2 lines

(

// foreach ($groups AS &$group)

// natcasesort($group['attributes']);

)

 

de maten blijven helaas in dezelfde volgorde staan.

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...