Jump to content

perot

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by perot

  1. Bonjour, Pour avoir une facture affichant le TTC et non le HT, j'ai modifié le fichier "pdf > invoice.product-tab.tpl" : ​ligne 37 : <th class="product header-right small" width="{$layout.unit_price_tax_excl.width}%">{l s='Unit Price' pdf='true'} <br /> {l s='(Tax excl.)' pdf='true'}</th> par : <th class="product header-right small" width="{$layout.unit_price_tax_excl.width}%">{l s='Unit Price' pdf='true'} <br /> {l s='(Tax incl.)' pdf='true'}</th> ligne 39 : <th class="product header-right small" width="{$layout.total_tax_excl.width}%">{l s='Total' pdf='true'} <br /> {l s='(Tax excl.)' pdf='true'}</th> par : <th class="product header-right small" width="{$layout.total_tax_excl.width}%">{l s='Total' pdf='true'} <br /> {l s='(Tax incl.)' pdf='true'}</th> ligne 88 : {displayPrice currency=$order->id_currency price=$order_detail.unit_price_tax_excl_including_ecotax} par : {displayPrice currency=$order->id_currency price=$order_detail.unit_price_tax_incl_including_ecotax} ligne 98 : {displayPrice currency=$order->id_currency price=$order_detail.total_price_tax_excl_including_ecotax} par : {displayPrice currency=$order->id_currency price=$order_detail.total_price_tax_incl_including_ecotax} Si cela peut vous être utile.
  2. Bonjour, Le fichier "blockcms.tpl" dans themes > votretheme >modules > blockcms > blockcms.tpl. Vers la ligne 129
  3. Bonjour, Certains ont trouvé des solutions en activant les transporteurs dans la gestion de stock.
  4. Bonjour, Problème récurrent avec l'API Google utilisé par GLS. Voir avec eux.
  5. Bonjour, la solution semble être ici : https://github.com/PrestaShop/PrestaShop/pull/5578 fichier : controllers/admin/AdminImportController.php vers ligne 1066 public static function arrayWalk(&$array, $funcname, &$user_data = false) } foreach ($array as $k => $row) { - if (!call_user_func_array($funcname, array($row, $k, $user_data))) { + if (!call_user_func_array($funcname, array($row, $k, &$user_data))) { return false; } }
  6. Bonjour, hello, Peut être une piste ici : http://www.lije-creative.com/prestashop-ajouter-le-poids-du-colis-sur-le-bon-de-livraison/
  7. Bonjour, Pour "remettre" à sa place le module de recherche, il faut "dégreffer" les modules dans position "hooks" et les greffer à nouveau dans le bon ordre. Les mots clés qui disparaissent...cela me laisse perplexe, tout comme l'adresse mail inéchangeable. L'indexation des produits est importante pour la recherche.
×
×
  • Create New...