trisaras Posted March 16, 2016 Share Posted March 16, 2016 (edited) Ciao a tutti, spero che non sia il 3 post identico che inserisco perchè oggi il forum mi da problemi! Vado subito al dunque.... c'è un modo per ordinare le caratteristiche del prodotto nella scheda tecnica in ordine alfabetico e non in ordine di id? Grazie... spero che questa volta mi prenda il post! Edited March 22, 2016 by trisaras (see edit history) Link to comment Share on other sites More sharing options...
Gliggieri Posted March 16, 2016 Share Posted March 16, 2016 Ciao, basterebbe (se non erro) fare una modifica al file php che prende le categorie dal database e le stampa.Metti qualcosa con questa logica, ovviamente va adattato al casoSELECT * FROM tbl_name ORDER BY field_name Link to comment Share on other sites More sharing options...
trisaras Posted March 16, 2016 Author Share Posted March 16, 2016 mmm, non sono tanto pratica... riusciresti a farmi capire meglio? Link to comment Share on other sites More sharing options...
Gliggieri Posted March 16, 2016 Share Posted March 16, 2016 Mandami il link della pagina che dovresti sistemare tramite mp e poi scrivo qui il modo per fare la modifica Link to comment Share on other sites More sharing options...
trisaras Posted March 17, 2016 Author Share Posted March 17, 2016 Inviato! Link to comment Share on other sites More sharing options...
Guest Posted March 19, 2016 Share Posted March 19, 2016 Ciao a tutti, spero che non sia il 3 post identico che inserisco perchè oggi il forum mi da problemi! Vado subito al dunque.... c'è un modo per ordinare le caratteristiche del prodotto nella scheda tecnica in ordine alfabetico e non in ordine di id? Grazie... spero che questa volta mi prenda il post! bisogna intervenire sulla query che visualizza le caratteristiche e non sulla pagina categorie non è semplice l'intervento specialmente se non si ha "molta" conoscenza di prestashop lato codice Saluti Link to comment Share on other sites More sharing options...
trisaras Posted March 21, 2016 Author Share Posted March 21, 2016 Risolto! Grazie a Gliggieri sono riuscita ad ottenere quello che volevo... spero lui vi possa riportare la soluzione! Link to comment Share on other sites More sharing options...
Gliggieri Posted March 22, 2016 Share Posted March 22, 2016 Buongiorno, Per chi avesse la stessa necessità basta modificare il file classes/Product.phpModificare dalla riga 4438 con questo codice: public static function getFrontFeaturesStatic($id_lang, $id_product) { if (!Feature::isFeatureActive()) { return array(); } if (!array_key_exists($id_product.'-'.$id_lang, self::$_frontFeaturesCache)) { self::$_frontFeaturesCache[$id_product.'-'.$id_lang] = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT name, value, pf.id_feature FROM '._DB_PREFIX_.'feature_product pf LEFT JOIN '._DB_PREFIX_.'feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = '.(int)$id_lang.') LEFT JOIN '._DB_PREFIX_.'feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = '.(int)$id_lang.') LEFT JOIN '._DB_PREFIX_.'feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = '.(int)$id_lang.') '.Shop::addSqlAssociation('feature', 'f').' WHERE pf.id_product = '.(int)$id_product.' ORDER BY name ASC' ); } return self::$_frontFeaturesCache[$id_product.'-'.$id_lang]; } Saluti GL Link to comment Share on other sites More sharing options...
trisaras Posted March 22, 2016 Author Share Posted March 22, 2016 Aspetta però.... ieri non me ne ero accorta.... apportando questa modifica scompare il prezzo! Nella lista dei prodotti il prezzo appare a 0,00 mentre nel singolo prodotto non si vede nulla! Link to comment Share on other sites More sharing options...
Gliggieri Posted March 22, 2016 Share Posted March 22, 2016 Sarà perché abbiamo versioni di prestashop differenti. Un sort by non può mica distruggere tutto Inviami il file di backup che ti avevo consigliato di effettuare e faccio la modifica sul tuo (la mia mail ce l'hai) Link to comment Share on other sites More sharing options...
trisaras Posted March 22, 2016 Author Share Posted March 22, 2016 Un sort non può ditruggere??? Dipende da chi lo usa! ahahahahaNon volevo crearti altro disturbo... ma se insisti! Inviato.... Grazie ancora per tutto! Link to comment Share on other sites More sharing options...
Gliggieri Posted March 22, 2016 Share Posted March 22, 2016 Inviato tutto via mail!Come già anticipato se dovesse non funzionare avrei bisogno degli accessi ftp per controllare gli altri files. (forse perché qualcuno ha già effettuato delle modifiche per realizzarti determinate modifiche ad esempio)Fammi sapere Ciao Link to comment Share on other sites More sharing options...
trisaras Posted March 22, 2016 Author Share Posted March 22, 2016 Dovrebbe essere tutto ok! Link to comment Share on other sites More sharing options...
Gliggieri Posted March 22, 2016 Share Posted March 22, 2016 Di nulla, resto a disposizione 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