Jump to content

praneth

Members
  • Posts

    25
  • Joined

  • Last visited

Profile Information

  • Activity
    User/Merchant

praneth's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. This thread is more that a year old, but I can partially help for people using v.1.5: To display the cart on the bank wire summary page, I inserted a new hook following this method: http://www.prestashop.com/forums/topic/173027-solved-how-to-create-a-new-hook-in-15-am-i-doing-it-wrong/page__st__20 (The tutorial says that you don't have to, but I had to manually add the hook to the database). I then made a copy of blockcart.tpl (named it blockcart2.tpl). Following this, I inserted the code below before the last } of blockcart.php public function hookDisplayMyNewHook($params) { if (Configuration::get('PS_CATALOG_MODE')) return; // @todo this variable seems not used $this->smarty->assign('order_page', strpos($_SERVER['PHP_SELF'], 'order') !== false); $this->assignContentVars($params); return $this->display(__FILE__, 'blockcart2.tpl'); } You can then modify blockcart2.tpl to suit your needs. I haven't tried to display the other information (carrier, address, etc), but I don't see any reason why it wouldn't work using the same method. Good luck!!
  2. true I've always had trouble with things that don't have a purpose. I've noticed it elsewhere in global.css. Could be a private joke no one will get!
  3. Hi Nemo, Thanks for taking the time to reply. I had never come across that one. It's pretty useful actually! Still don't know about that period, but anyway... Thanks!
  4. Hello all, I am wondering if anyone knows: on line 1214 of global.css (under themes), what does content: "."; do? I had to remove it as it added dots in my order-opc page (payment section). Thanks!!!
  5. I don't know if this is what you are looking for, but have you had a look at "Orders -> Statuses" in the Back Office?
  6. Well.. now that i know where the problem comes from, I look for a solution in the rest of the forum? For now I have commented out: if (!Validate::isMailSubject($subject)) { Tools::dieOrLog(Tools::displayError('Error: invalid e-mail subject'), $die); return false; } in Mail.php
  7. THANK YOU. The problem seems to come from the "subject" of the email. I thought I had tried to correct that in mail.php, but I must have got it wrong. I'll try again
  8. Hello everyone, I have read quite a lot of the threads from people having the same problem. I have tried some of the solutions provided but nothing works for me. I am using v. 1.5.3 I receive test emails but nothing else. Anyone has an idea? Thank you !!!
  9. Hello, Would someone be able to update: for version 1.5.3 please? Thanks
  10. Actually I have a question: Would someone know how to add an exception so that the popup doesn't show when the maximum number of products has been reached? Currently I have the newly created popup window showing up saying that the product was added to the cart, and then a message saying that the product can't be added as the maximum number of items has been reached. This is confusing for the customer and I can't find an option in the back office to disable the cart when there are no products left for ordering. Thanks!
  11. Merci pour ta réponse, Divine Pour moi ça cloche parce que je fais la différence entre produit et quantité... Si tu regardes ton panier (que ce soit le panier ajax, ou le récapitulatif de la commande), tu as une ligne par produit, puis le détail de la quantité. Mais je ne vais pas perdre le sommeil la dessus. Je vais changer la traduction de "produits" par "articles". Et puis c'est tout.
  12. Bonjour à tous, Mon panier indique le nombre total d'objets commandés, et non le nombre de produits: Ex: si j'ajoute 100x iPod dans le panier, j'ai: "Panier: 100 produits" alors qu'il ne s'agit en fait que d'un produit, commandé 100x. Quelqu'un saurait-il comment modifié ceci? J'ai cherché dans le forum FR et EN, mais je ne trouve pas de réponse. Je suis surprise de voir que ce problème ne dérange pas grand monde... Merci! (v.1.5.3)
  13. Hello everyone, Currently, my cart shows the number of items and not the number of products ordered. For instance, if I add 10x iPod to the cart, it will show "10 products". I would like it to show "1 product" (as it is 10 occurrences of 1 product). Would anyone know how to fix this (in v. 1.5.3)? Thanks!
×
×
  • Create New...