Jump to content

Table PS_category_product + champ "position"


Recommended Posts

Bonsoir,
A quoi sert dans la table PS_category_product le champ "position" qui, apparament s'incremente en fonction de sa place dans le cas ou plusieurs produits appartiennent a la meme categorie.

 id_category       id_product          position  
     1                  1                0 
     1                  2                1 
     1                  3                2 
     2                  7                0 


Toutefois, quand je mets a 0 la position, cela ne semble changer absolument rien a l'affichage, d'ou ma question a quoi sert le champ position?

 id_category         id_product          position  
     1                  1                0 
     1                  2                0 
     1                  3                0
     2                  7                0




Merci de votre patience

Link to comment
Share on other sites

product-sort.php donne la réponse.

$orderByValues = array(0 => 'name', 1 => 'price', 2 => 'date_add', 3 => 'date_upd', 4 => 'position', 5 => 'manufacturer_name', 6 => 'quantity');



le champ position ne vient qu'en 4ème position , il est donc loin d'être prioritaire dans le tri.
Libre à toi de modifier cette ligne ou d'utiliser ce champ dans un module.
En l'état, c'est un champ de tri très secondaire

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