Potrzebuję pomocy przy sortowaniu cech, które wyświetlają się w bloku z lewej strony (left column). ( ) Przeszukałam już chyba całe forum, znalazłam kilka informacji, niestety nie działają w wersji Presty, którą posiadam (1.6.1)
Próbowałam dodawać im przedrostki 01.cecha, 02.cecha (wcześniej w pliku classes/Product.php aby je wycinało
Za kodem:
* Select all features for a given language
*
* @param $id_lang Language id
* @return array Array with feature's data
*/
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 f.position ASC'
);
Question
EwelinaCSI
Witam,
Potrzebuję pomocy przy sortowaniu cech, które wyświetlają się w bloku z lewej strony (left column). ( ) Przeszukałam już chyba całe forum, znalazłam kilka informacji, niestety nie działają w wersji Presty, którą posiadam (1.6.1)
Próbowałam dodawać im przedrostki 01.cecha, 02.cecha (wcześniej w pliku classes/Product.php aby je wycinało
Za kodem:
dodałam poniższy kod:
Korzystałam z informacji zawartej na : https://www.prestashop.com/forums/topic/9709-edit-features-order-list/?hl=features
Niestety nie rozwiązało to mojego problemu.
Będę wdzięczna za pomoc.
Link to comment
Share on other sites
8 answers to this question
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