AlexMooren Posted June 25, 2015 Share Posted June 25, 2015 Weet iemand hoe ik het product aantal kan aanpassen? Als ik nu naar een categorie ga heb ik de keuze uit 12 / 24 en 60. Is het mogelijk om hier bv ook een optie met all aan toe te voegen? Link to comment Share on other sites More sharing options...
musicmaster Posted June 29, 2015 Share Posted June 29, 2015 De aantallen in de frontoffice worden ingesteld in de file classes\controller\FrontController.php. In de functie pagination() vind je een regel die er zoiets uitziet: $nArray = (int)Configuration::get('PS_PRODUCTS_PER_PAGE') != 10 ? array((int)Configuration::get('PS_PRODUCTS_PER_PAGE'), 10, 20, 50, 100) : array(10, 20, 50, 100); De aantallen in de backoffice overzichten worden elders ingesteld. Link to comment Share on other sites More sharing options...
AlexMooren Posted July 11, 2015 Author Share Posted July 11, 2015 De aantallen in de frontoffice worden ingesteld in de file classes\controller\FrontController.php. In de functie pagination() vind je een regel die er zoiets uitziet: $nArray = (int)Configuration::get('PS_PRODUCTS_PER_PAGE') != 10 ? array((int)Configuration::get('PS_PRODUCTS_PER_PAGE'), 10, 20, 50, 100) : array(10, 20, 50, 100); De aantallen in de backoffice overzichten worden elders ingesteld. Ik heb het hele document door gezocht, maar kan dit niet vinden. Alleen het volgende, maar dat zal wel niet goed zijn. $default_products_per_page = max(1, (int)Configuration::get('PS_PRODUCTS_PER_PAGE')); $nArray = array($default_products_per_page, $default_products_per_page * 2, $default_products_per_page * 5); Link to comment Share on other sites More sharing options...
musicmaster Posted July 11, 2015 Share Posted July 11, 2015 Pak je rekenmachine. Je hebt 12, 24 en 60. Dat is $default_products_per_page, $default_products_per_page * 2 en $default_products_per_page * 5. Link to comment Share on other sites More sharing options...
AlexMooren Posted July 11, 2015 Author Share Posted July 11, 2015 Maar hoe kan ik deze verranderen zodat ik bv 12, 24, 60 en alles heb? Link to comment Share on other sites More sharing options...
musicmaster Posted July 12, 2015 Share Posted July 12, 2015 (edited) Gewoon doornummeren: $nArray = array(12,24,48,96,192,384); Prestashop past zichzelf aan. Als je een categorie met 15 producten hebt zul je alleen de 12 en 24 zien. Als je echt het precieze aantal wilt hebben zul je object eigenschappen of functies moeten gebruiken. Maar om dat uit te zoeken gaat me te ver. Edited July 12, 2015 by musicmaster (see edit history) Link to comment Share on other sites More sharing options...
AlexMooren Posted July 12, 2015 Author Share Posted July 12, 2015 dat had ik al begrepen, maar als het er niet staat!!!! ik zie nergens de huidige nummering staan, 12,24,60!!! Link to comment Share on other sites More sharing options...
musicmaster Posted July 12, 2015 Share Posted July 12, 2015 (int)Configuration::get('PS_PRODUCTS_PER_PAGE') levert bij jou het resultaat 12 op. 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