
Thomas Didierjean
Members-
Posts
161 -
Joined
-
Last visited
Profile Information
-
Activity
Agency
Thomas Didierjean's Achievements
Newbie (1/14)
6
Reputation
-
Fate of 1.4 series post 1.5 release
Thomas Didierjean replied to phrasespot's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Hi, I'm not sure on the exact timeline but I can tell you that there will be at least 6 more months of support for version 1.4. Regards, Thomas -
Problem uploading images
Thomas Didierjean replied to KMiDigital's topic in Configuring and using PrestaShop
Hi barto89, There are, of course, no limits to the number of images you can have in PrestaShop. If there is a limitation, it is likely that you have reached the maximum disk space that your host is allowing, or that there is something wrong on their side. Regards, Thomas -
Problem uploading images
Thomas Didierjean replied to KMiDigital's topic in Configuring and using PrestaShop
Hi, If you send me BO access credentials at [email protected], with a description of the issue, I will try to look into it. Regards, Thomas -
Comment utiliser Module Kiala Light
Thomas Didierjean replied to bclaise's topic in Discussion générale
Bonjour, A ma connaissance le service Kiala fonctionnant avec le module Kiala Light n'est pas encore actif en Belgique, uniquement en Espagne. Vous pouvez contacter Kiala pour obtenir plus d'informations. Le service Kiala avancé est bien disponible pour la Belgique, mais comme précisé il concerne des volumes de colis plus importants. Cordialement, Thomas -
You can get an idea of the performance difference by comparing the loading times from 1.4 and 1.5 that appear at the bottom left of each page (BO only). You can get more data by activating _PS_DEBUG_PROFILING_ in file /config/defines.inc.php, or with network analysis tools like the network tab of firebug.
-
Mais oui, ils sont bienvenus ! On te sortira notre meilleur discours marketing pour que tu viennes sur PrestaShop.
- 65 replies
-
- 2
-
-
- soirée développeurs
- prestashop
-
(and 1 more)
Tagged with:
-
jquery update
Thomas Didierjean replied to Promokit's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Yes, it should have been done for 1.5 but unfortunately we didn't have enough time. It will definitly be for next version. -
jquery update
Thomas Didierjean replied to Promokit's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Hi, We are working on it and we will be making a decision about upgrading jQuery after we are confident that compatibility issues in modules and themes are limited. Thomas -
Hi, Please be aware that the back office now uses Smarty and the first time that the page is opened the generation takes a long time. It is faster on subsequent openings. Is it your impression that it is much slower even when reloading the same page? Also, do you find the front office slower? Thomas
-
probleme d'adresse de livraison : colissimo vs kiala
Thomas Didierjean replied to yobaboy's topic in Discussion générale
Hi, You can find the updated version (1.4) on addons.prestashop.com. Regards, Thomas -
En fait le champ "val" de chaque checkbox doit contenir un booléen qui indique si la case est cochée ou non (les strings sont évaluées à "true" c'est pourquoi toutes les checkbox sont cochées dans votre cas). Vous aurez besoin d'une fonction qui récupère les valeurs sérialisées et remplit les champs "val".
-
Bonjour, Les checkbox sont un cas qui n'est pas géré de façon standard, vous allez stocker les résultats dans une table d'association ou autre donc l'insertion ne se fera pas de façon automatique. Tout d'abord pour votre champ quelques modifications : 'lang' => true et asso_causes[] array( 'type' => 'checkbox', 'label' => $this->l('Causes:'), 'name' => 'asso_causes', 'values' => array( 'query' => $asso_causes', 'id' => 'id_cause', 'name' => 'name' ) ) Ensuite, il faut que votre tableau $asso_causes contienne une clé avec la valeur de chaque checkbox pour qu'elles puissent être cochées automatiquement. Ces valeurs seront exploitées par le code suivant que vous devez ajouter après la déclaration de $asso_causes. Ici j'ai choisi la clé "value". foreach ($asso_causes as $cause) $this->fields_value['asso_causes_'.$cause['id_cause']] = $cause['value']; Enfin, pour gérer la validation et la sauvegarde, définissez votre propre méthode qui sera appelée en ajoutant ce code : function processSave() { parent::processSave(); $this->maMethode(); } A noter que vous n'allez pas récupérer en POST un tableau asso_causes[] mais différentes valeurs asso_causes_X où X sont les id présentes dans le tableau d'entrée. J'espère que c'est suffisamment clair, n'hésitez pas à poser des questions Thomas