Jump to content

Fonction remarque lors de la commance


Recommended Posts

themes/VOTRETHEME/templates/checkout/_partials/steps/shipping.tpl

 

(C'est des arborescences à rallonge dans Prestashop 1.7 :wacko:)

 

Juste apres <div class="order-options"> il doit vous manquez ceci:

            <div id="delivery">
              <label for="delivery_message">{l s='If you would like to add a comment about your order, please write it in the field below.' d='Shop.Theme.Checkout'}</label>
              <textarea rows="2" cols="120" id="delivery_message" name="delivery_message">{$delivery_message}</textarea>
            </div>
Link to comment
Share on other sites

Ok merci déjà pour ton aide, il me reste à migrer, mais j'ai déjà remarqué un autre bug en version 1.7.2.2 c'est pour cela que je vous rester en 1.7.1.2

 

En 1.7.2.2 as tu aussi lors de commande de 3 articles, 3 images identique? un fois la commande validé

 

 

post-1051230-0-05978500-1505933357_thumb.jpg

Edited by doublemetre (see edit history)
Link to comment
Share on other sites

Oui c'est un bug connu qui devrait être corrigé dans la prochaine version.

 

Voilà ce que j'ai trouvé :) A garder en post-it quelque part ^^

 

******** Bug a suivre *********

Bug on order confirmation page. Same images is displayed. (http://forge.prestashop.com/browse/BOOM-3695)

To solve go to src\Adapter\OrderOrderPresenter.php" in function getProducts(Order $order) around line 134

 

Replace :

if ($cartProduct['id_product_attribute'] === $orderProduct['id_product_attribute']) {

By :

 if (($cartProduct['id_product'] === $orderProduct['id_product']) && ($cartProduct['id_product_attribute'] === $orderProduct['id_product_attribute'])) {
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...