
Dagostino
Members-
Posts
29 -
Joined
-
Last visited
Profile Information
-
Activity
User/Merchant
Dagostino's Achievements
Newbie (1/14)
2
Reputation
-
[FREE TUTORIAL] Show the lowest price (from xx$) in product list
Dagostino replied to NemoPS's topic in Core developers
No i didnt, i bough the module for it. The module name is Agile quantity discount indicator. It work on my presta 1.6.1.4 but well, it's a pay module. -
[FREE TUTORIAL] Show the lowest price (from xx$) in product list
Dagostino replied to NemoPS's topic in Core developers
Thank's for your answer, unfortunatelly im not a dev, so i cant do this ^^ i ll must buy the 80€ module.. -
[FREE TUTORIAL] Show the lowest price (from xx$) in product list
Dagostino replied to NemoPS's topic in Core developers
Thank's for your answer ! No i'm not...i cant find a solution, only a module at 80$ but i dont even know if it ll work... i send you a mp just with link of website. -
[FREE TUTORIAL] Show the lowest price (from xx$) in product list
Dagostino replied to NemoPS's topic in Core developers
hello, seem to dont work on 1.6.1. I did all, this is my CategoryController.php override. The price displaying is the "for 1 unit", not the lowest If you can help me ? thank's ! CategoryController.php -
Yes tu gères parfaitement...merci beaucoup !!
-
Thank you (ou merci ) I upload the file, it's more easy for you (because more than 900 lines.) it's ok ? Line 116, i just write 'order', it's here i need to modify the variable... i tried with total_orders but didnt work, i think i have something to legge more. thank's again ! AdminCustomersController.php
-
Bonjour à tous, je viens vers vous aujourd'hui car je rencontre un petit soucis, j'essaye d'ajouter une colonne dans la liste des clients sur le BO mais je n'arrive pas à faire fonctionner tout ça. Je voudrai que l'on puisse voir le nombre de commande d'un client sans avoir besoin d'entrer sur sa fiche. Comme sur l'image : J'arrive donc bien à rajouter la colonne mais impossible de lui faire afficher le total de commande. Je sais que la modification se passe dans le fichier AdminCustomersController.php mais je ne sais pas trop comment faire...j'ai tenté d'utiliser la variable total_orders présente sur le fichier mais ça ne fonctionne pas, j'obtiens l'erreur suivante : "unknown column in field list" Bon je dois avouer que je ne suis pas développeur, ceci explique cela J'utilise prestashop 1.5.4.1. Si quelqu'un peut m'aider, je vous en remercie vivement ! J'ai aussi posté sur le forum anglais au cas ou... Bonne journée à tous !
-
Someone can help me please ?
-
Hello, i come to you because i want to add a column in customer list wich give the number of order than a customer made. Like the screen : I know the modification is in the AdminCustomersController but i cant figure out how make it work. I tried use the value total_orders but it's not working, it say "unknown column in field list"... Im using presta 1.5.4.1 If someone can help me please, it ll be appreciate... thank's to every one and sorry for my bad english
-
What about change the attribute type of your product attribute? I mean there is 3 types : 1 - drop down list 2 - radios buttons 3 - color or texture Try change by color / texture, then you need to create each texture for each size, but you ll not have the "in stock" Maybe there is another solution, but i'm not a pro
-
How to get availability value in cart
Dagostino replied to guest*'s topic in Addons, modules and themes developers
it's an old post, but i was looking for it today and with the part of the author code, i did it. so here the code for display quantity stock in cart : {if $product.active AND ($product.allow_oosp OR $product.stock_quantity > 0)}{$product->available_later}{l s={$product.stock_quantity[spam-filter] {else}{l s='0'}{/if} -
Hello, I need to do something like this but not on homepage i have installed a module (for display discount price on product page) and i have put this code in product-list.tpl (for display cheapest price on the product list in category) : {if isset($is_agilequantitydiscountindicator_installed)} <script language="javascript" type="text/javascript"> $(document).ready(function() {ldelim} getQDIPriceForList({$product.id_product}); {rdelim} ); </script> So here is my probleme, i have 2 differents groups : normal customers, and VIP For the normal customer, all work fine but for VIP i have a probleme, i want to hide this code (and module) for the VIP group for 2 reasons : first : VIP dont have more than 1 discount price (Normal customer have 5 discount price) so it's useless to display it on product page. second : The price displayed on product list dont work when the discount price is setting on "1" on quantity minimum, the price display on the product list is the higher. So i just want to hide the code for VIP and display for normal it is possible ? Thank's for futures answers and i'm sorry for my bad english, i hope it's understandable ps : Presta 1.5.4.1