SylRob
Members-
Posts
28 -
Joined
-
Last visited
Profile Information
-
Location
Paris
-
Activity
Developer
SylRob's Achievements
Newbie (1/14)
1
Reputation
-
[Developers+Designers] Github PrestaShop Poll
SylRob replied to benjamin utterback's topic in Core developers
Me again. I took 30 minutes to understand github, and I understood that it was quit complicated. we have to suscribe (I did), then download the software, install it, learn how tu use it (with its language), and then learn how to pull a request (and what it mean), a commit, the coding standards, how to understand a question or an answer etc... For somebody like me who didn't know about github, it stop me. In conclusion I would say that git hub is not for simple PHP developper like me. -
[Developers+Designers] Github PrestaShop Poll
SylRob replied to benjamin utterback's topic in Core developers
/* Hi, I'm a developper and I must admit I don't know how to use github. If you want all developpers to follow you on github maybe you should help them by communicate about it: like what it is and how to use it */ maybe I spoke too fast cause I just found out this post http://www.prestashop.com/blog/en/what-need-know-prestashop-github/ -
Salut, J'ai peut être une idée pour ton probleme: dans un premier temps tu utilise ton produit comme un objet ( $produit->name ) et ensuite tu l'utilise comme un simple array ( $produit.showprice ) il faut choisir essaie $produit->showprice sinon regarde dans $produit comment ce nomme la variable qui contient le prix de ton produit
-
Salut, Les sessions qui ne se ferment pas cela concerne les cookies. Vide tes cookies, tu redeviens anonyme. en front ça sers notamment à récupérer les panier des abandonnistes. Je ne connais pas les manipes exact, mais il faudrait supprimer les bon cookies à la fermeture de la page.
-
display 2 fichiers .tpl dans le hook d'un module
SylRob replied to SylRob's topic in PrestaShop pour les développeurs
je up le sujet car je cherche toujours la solution -
Accès rapide vers configuration d'un module
SylRob replied to chth's topic in PrestaShop pour les développeurs
un token est unique est associé à un session je pense. une piste serai peut être de passer par un page intermédiaire qui te donnerai un token valide que tu pourrai alors ajouter à ton url avant de rediriger. il te fera sans doute passer par le formulaire de connexion au backo je pense. -
Bonjour, J'ai encore besoin de vous. Cette fois-ci mon problème est plutôt sous la forme d'une question je souhaite faire ça lorsque le hook de mon module ce lance : public function hookDisplayFooter($params) { $this->display(__FILE__, 'slideIn.tpl'); return $this->display(__FILE__, 'autre.tpl'); } ou return $this->display(__FILE__, array('slideIn.tpl','autre.tpl')); (mon code est un peu plus complexe mais je résume). cala ne semble pas faisable de cette manière (il ne prend que le dernier tpl et ignore le précédent). qu'elle est la bonne méthode ?
-
Salut, je dois avoir la réponse à ta question : "$product.id" par exemple c'est la syntaxe de smarty pour parler d'un array en equivalent php ça serait $product['id'] et "$product->id" c'est un objet donc pour savoir si tu as à faire a un array ou un objet il te suffit soit de savoir comment ta variable est appelé soit de faire un var_dump dessus pour voir ce qu'elle contient
-
[Résolu]Liens images et réecriture d'url
SylRob replied to SylRob's topic in PrestaShop pour les développeurs
J'ai trouvé : Le problème venait de $product->link_rewrite j'aurai dû écrire $product.link_rewrite à la place, car c'est comme ça qu'il est appelé dans product.tpl (categorie controller) l'object Produit lui est appelé dans le controller Produit (product.tpl)- 1 reply
-
- réecriture
- images
-
(and 1 more)
Tagged with:
-
I have the answer: the problem was coming from $product->link_rewrite I should have wrote $product.link_rewrite because this is how it is called in product-list.tpl The object $product come from the product page controller
-
Hi, I have a strange problem. The images I call through my code are display when my url are not rewrite (disable in the backoffice) and don't display when the url rewriting is on here is my code (with smarty, in product-list.tpl) : {assign var=imageIds value="`$product.id_product`-`$image[0].id_image`"} <img class="hidden imageAttribut_{$image[0].id_attribute}" src="{$link->getImageLink($product->link_rewrite, $imageIds, 'home_default')}" alt="{$image[0].legend|htmlspecialchars}" /> here what give {$link->getImageLink(...) without url rewriting : http://www.monsite.c...ome_default.jpg with this, I have my image but when I enable the url rewriting : http://www.monsite.c...me_default/.jpg obviously it doesn't work. someone have an idea where it could come from ? for the record : - The Image I want to display are not the default image normaly displayed in product-list, this one appear normaly. - $imageIds give me the expected string like "8-37" - If I put the name of my product at the end of the rewrote URL the image is displayed (http://www.monsite.c..._my_product.jpg)
-
Bonjour, J'ai un problème que je trouve très étrange. les images que j'appel via mon code s'affiche quand mes urls ne sont pas réecrite (activation et desactivation à travers le Backo) et ne s'affichent plus quand l'url rewriting est on voicie mon code (en smarty) : {assign var=imageIds value="`$product.id_product`-`$image[0].id_image`"} <img class="hidden imageAttribut_{$image[0].id_attribute}" src="{$link->getImageLink($product->link_rewrite, $imageIds, 'home_default')}" alt="{$image[0].legend|htmlspecialchars}" /> voicie ce que me donne le {$link->getImageLink(...) sans url rewriting : http://www.monsite.c...ome_default.jpg ce qui me donne bien mon image et lorsque j'active l'url rewriting : http://www.monsite.c...me_default/.jpg ce qui de toute évidence ne va pas. qqun sait--il d'où provient l'erreure ? pour infos $imageIds me donne bien des strings du genre 8-37
- 1 reply
-
- réecriture
- images
-
(and 1 more)
Tagged with:
-
Ogone, prestashop 1.5.2 mail de confirmation de paiement
SylRob replied to SylRob's topic in PrestaShop pour les développeurs
Je up ce topic, car malheureusement je n'ai pas de solution.