Feetschi Posted January 18, 2015 Share Posted January 18, 2015 Hallo Leute, ich arbeite nun mit PS 1.6.0.11 seit ein paar Tagen und heute ist mir aufgefallen, dass die linke Spalte nicht angezeigt wird bei der Produktbeschreibung/detail. Bei Version 1.6.0.9 gibt es unter Voreinstellungen--> Templates--> Anzeige der Spalten "product", diese gibt es bei Version 1.6.0.11 nicht mehr. Wie kann ich trotzdem die linke Spalte bei der Produktansicht aktiv schalten? Danke und lg Judith Link to comment Share on other sites More sharing options...
Feetschi Posted January 20, 2015 Author Share Posted January 20, 2015 (edited) So nun hab ich was gefunden und hat im Presta-Test funktioniert (hoffe nur, dass der Rest funktioniert) https://github.com/PrestaShop/PrestaShop/commit/3047ee0b3246cb1270a8fbfc51a19de2563da7ad controllers/admin/AdminThemesController.php 260-262 from - LEFT JOIN '._DB_PREFIX_.'meta_lang ml ON(ml.id_meta = m.id_meta AND ml.id_lang = '.(int)$this->context->language->id.')- WHERE tm.`id_theme` = '.(int)$this->object->id.- ((int)Context::getContext()->shop->id ? ' AND id_shop = '.(int)Context::getContext()->shop->id : '')); to+ LEFT JOIN '._DB_PREFIX_.'meta_lang ml ON(ml.id_meta = m.id_meta AND ml.id_lang = '.(int)$this->context->language->id.+ ((int)Context::getContext()->shop->id ? ' AND id_shop = '.(int)Context::getContext()->shop->id : '').')+ WHERE tm.`id_theme` = '.(int)$this->object->id); Danach kann man im BO --> Templates die fehlenden Spalten aktivieren Edited January 20, 2015 by Feetschi (see edit history) 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