Search the Community
Showing results for tags 'builder'.
-
Bonjour à tous, nous n'avons jamais pensé à le publier ici, mais nous développons depuis quelques temps un module de page builder gratuit et open source pour PrestaShop. CE dernier est nommé PrettyBlocks, vous trouverez toutes les informations sur notre github: https://github.com/PrestaSafe/prettyblocks Vous avez également la documentation développeur en FR: https://prettyblocks.io/ Et une démonstration en vidéo du builder: N'hésitez pas à l'essayez et nous faire vos retours. Pensez à installer les classic blocks (gratuits également) https://github.com/PrestaSafe/classicblocks PrettyBlocks est utilisalable sur tout votre site, vous pouvez en gros, duppliquer vos modules (qui sont des blocks). Pour rappel ce projet est 100% gratuit, des évolutions arrivent au fur et à mesure. N'hésitez pas à nous dire ce que vous en pensez prettyblocks (6).zip classicblocks (6).zip
- 4 replies
-
- 9
-
-
-
- pagebuilder
- builder
-
(and 2 more)
Tagged with:
-
Hello ! I'm trying to modify Manufacturer query for admin page in presta 1.7.6. For this i use this hook in order to alter $params['search_query_builder']. public function hookActionManufacturerGridQueryBuilderModifier($params) Its easy to add something into the query , but i'm trying to remove this select that is in the core. (ManufacturerQueryBuilder) addSelect('(' . $addressesQb->getSQL() . ') AS addresses_count') into the function : public function getSearchQueryBuilder(SearchCriteriaInterface $searchCriteria) { $addressesQb = $this->connection->createQueryBuilder(); $addressesQb->select('COUNT(a.`id_manufacturer`) AS `addresses_count`') ->from($this->dbPrefix . 'address', 'a') ->where('m.`id_manufacturer` = a.`id_manufacturer`') ->andWhere('a.`deleted` = 0') ->groupBy('a.`id_manufacturer`') ; $qb = $this->getQueryBuilder($searchCriteria->getFilters()); $qb ->select('m.`id_manufacturer`, m.`name`, m.`active`') ->addSelect('COUNT(p.`id_product`) AS `products_count`') ->addSelect('(' . $addressesQb->getSQL() . ') AS addresses_count') ->groupBy('m.`id_manufacturer`') ; $this->searchCriteriaApplicator ->applyPagination($searchCriteria, $qb) ->applySorting($searchCriteria, $qb) ; return $qb; } Does anybody has already made this ? thanks a lot for ur help
- 1 reply
-
- manufacturer
- remove select
-
(and 5 more)
Tagged with:
-
I have a social widget on the home page but it doesn't work, you can neither click on the text nor be redirected to the instagram page. Any idea on how to fix this issue?
- 1 reply
-
- pagebuilder
- link
- (and 4 more)
-
Bonjour, Je suis entrain de créer mon site : www.otherskin.fr, tout se passait bien sauf depuis ce matin où un message d'erreur est apparu lorsque je souhaitais rafraîchir la page AP HOOK BUILDER.. Je suis débutante dans ce domaine et c'est mon premier site, malgré beaucoup de recherches je n'ai trouvé aucunes solutions. Quelqu'un sait-il de quoi il s'agit ? Merci d'avance pour votre aide et bonne journée, Virginie
- 1 reply
-
- builder
- parseerror
-
(and 5 more)
Tagged with:
-
Hi guys, I've search for many hours now on the internet, and found no satisfying answer, so I need your expertise. I'm developing Prestashop website for clients, and do you think I should use a Theme builder like Prestabuilder, a theme with a builder like Warehouse or a pre-made theme that i will custom through code. What's the better for performance, page speed ? How do you feel about that ? Do you always develop from scratch for client or just install a theme ? Thanks for your feedback.