
RomsWebDesign
Members-
Posts
48 -
Joined
-
Last visited
Everything posted by RomsWebDesign
-
Non pas du tout. Ce que tu me propose est un produit dans lequel on configure la déclinaison voulu. Là ce que je veux c'est vraiment un pack de produit choisi par le client. A La base le pack n'existe pas, je veux pouvoir le créer à la volée lors de l'ajout au panier.
- 5 replies
-
- pack
- prestashop
-
(and 3 more)
Tagged with:
-
Bonjour, Merci de vos retour et désolé pour ma réponse tardive, j'étais à l'étranger. En fait, il faut que je crée un module qui va permettre au utilisateurs de pouvoir commander un ensemble de produit. Un peu comme un configurateur PC. Une fois les choix des utilisateurs fais, il va cliquer sur le bouton "Ajouter au panier". Et c'est à ce moment là que je voudrais créer un pack de produits contenant l'ensemble des produits choisis par le client. Créer un produit classique ou virtuel ca je sais faire sans problème Mais le produit pack non. Pour pouvoir ajouter un produit à un pack ca aussi sans problème, Pack::addItem($id_product, $id_item, $qty, $id_attribute_item) J'ai beaucoup parcourir le core de Prestashop je ne trouve pas. Si vous avez une piste je suis à votre écoute. Merci.
- 5 replies
-
- pack
- prestashop
-
(and 3 more)
Tagged with:
-
Display total tax for each product tax rule
RomsWebDesign replied to RomsWebDesign's topic in Core developers
I know Prestashop coding. Can you explain it to me ? -
Bonjour, Avec Prestashop, je sais créé de simple produit avec ou sans personnalisation. Maintenant je voudrais créer des packs de produits par le dev. Les produits existent déjà dans le BO. Je voudrais savoir si quelqu'un sait comment créer un pack de produits, ajouter des produits à l'intérieur, par le dev. J'ai fait des recherche dans les différentes class et controller mais je ne vois pas trop. Un peu d'aide serait la bien venu. Merci.
- 5 replies
-
- pack
- prestashop
-
(and 3 more)
Tagged with:
-
With PrestaShop, I know create a product programmatically but I do not see how to create a products pack. The products already exist, it would just so I can create a pack of products and add it some products programmatically. Thanks.
- 1 reply
-
- programmatically
- product
-
(and 2 more)
Tagged with:
-
Display total tax for each product tax rule
RomsWebDesign replied to RomsWebDesign's topic in Core developers
Thanks for your feedback. Can you tell me how to do this please? -
Hi, Is there a way to display each total tax in cart summary and invoice ? Ex. Total tax at 2.5% = 10.00 Total tax at 10% = 15.00 Total tax at 20% = 10.00 Total Tax = 35.00 I do not know if I'm clear enough.
-
Hi guys, I would like to know if there is a way to add a new smarty modifier/function from a module controller. If so, can you explain me how ? Thanks. Best regards, Romain
- 1 reply
-
- prestashop
- smarty
-
(and 3 more)
Tagged with:
-
Hi guys, All is in the question. I have built a module witch display a google map. To do so, I load 2 external scripts "http://maps.google.com/maps/api/js?sensor=true®ion=FR" and a other. I would like that external scripts are load before the file generate by the smart cache. Is there a way do to this ? Thanks. Kind regards, Romain
-
- javascript
- smart cache
-
(and 4 more)
Tagged with:
-
Thank you for these indications. And for the second part, change the status of the order and send an email to the customer with the link to pay the order.
-
in fact, when the order is placed, the customer pays nothing, he receives an email warning him that his order was taken into account and that the admin will have 24 / 48h to estimate shipping costs. The admin checks the command and adding the amount of shipping (variable). once shipping costs is added, the amount of the order is changed, the admin changes the status of the order, the customer receives an email with the order summary and a link to the payment thereof. I'm not sure this is clear.
-
Hi guys, I would like To lnow if it is possible To place an order "on hold". When a customer place an order and choose a specific deliverer the order are place "on hold" and the customer doesn't paid this order. The customer receive an email. The admin Check the order and decide To change the status of the order for the customer paid it. Thanks in advance. Regards, Romain
-
[SOLVED] limit quantity order for all products
RomsWebDesign replied to Med6's topic in Core developers
ok thank you. In fact, my client does not really want to limit the order quantity for these products. He just want to change the operating mode of the cart. Instead of incrementing the quantity of products it want it added a line in the cart. I do not know if I'm clear. In the screen below. We see that the same product was added 3 times. I create a new topic => http://www.prestashop.com/forums/topic/330679-not-update-product-quantity-in-cart-but-create-new-cart-item/ Thanks -
In fact, my client does not really want to limit the order quantity for these products. He just want to change the operating mode of the cart. Instead of incrementing the quantity of products it want it added a line in the cart. I do not know if I'm clear. In the screen below. We see that the same product was added 3 times. I don't see how to do that. If possible it would be perfect if we could do it from a module. I guess we will have to add a id_cart_product in the table cart_product. And thus modify the add / delete methods based.
-
[SOLVED] limit quantity order for all products
RomsWebDesign replied to Med6's topic in Core developers
Is there a way to do that from a module, example from actionCartSave ? I would like to limit overrides. Thanks.