Jump to content

Search the Community

Showing results for tags 'OrderConfirmation'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Community Help and Support
    • PrestaShop Download
    • PrestaShop Marketplace
  • News and Announcements
    • PrestaShop news and releases
    • PrestaShop Beta
    • PrestaShop Blogs
    • PrestaShop Meetups
  • International community (English)
    • General topics
    • PrestaShop Merchants
    • PrestaShop Developers
    • Taxes, Translations & Laws
    • Community Modules and Themes
  • Forum francophone
    • Discussion générale
    • Aide et support communautaire
    • PrestaShop pour les marchands
    • PrestaShop pour les développeurs
    • Adaptation aux lois Québécoises
    • Modules et thèmes gratuits
    • Modules et thèmes payants
  • Foro en Español
    • Discusión general
    • Soporte de la comunidad y ayuda
    • Comerciantes PrestaShop
    • Desarrolladores PrestaShop
    • Módulos y plantillas gratuitas
  • Forum italiano
    • Forum generale
    • Aiuto e supporto della Community
    • Commercianti PrestaShop
    • Sviluppatori PrestaShop
    • Aspetti legali sull'eCommerce
    • Moduli e template gratuiti
  • Deutsches Forum
    • Generelle Fragen
    • Support und Hilfe aus der Community
    • e-Commerce/Versand-Handel mit Prestashop
    • Prestashop-Entwickler
    • Anpassung an deutsches Recht
    • Kostenlose Module und Templates
    • Generelle Fragen Copy
  • Nederlandstalig forum
    • Algemeen
    • Hulp en ondersteuning, van en voor de community
    • PrestaShop-winkeliers
    • PrestaShop-ontwikkelaars
    • Het aanpassen van PrestaShop
    • Gratis modules en templates
  • Fórum em Português
    • Fórum Geral
    • Ajuda e Suporte da Comunidade
    • Lojistas que utilizam o PrestaShop
    • Desenvolvedores PrestaShop
    • Legislação específica
    • Módulos e temas gratuitos
  • Polskie forum
    • Forum ogólne
    • Wsparcie i pomoc użytkowników
    • Oferty twórców PrestaShop
    • Deweloperzy PrestaShop
    • Darmowe Moduły i Szablony
  • Dansk forum
    • Generelt forum
    • Hjælp og support fra fællesskabet
    • PrestaShop for købmænd
    • PrestaShop for udviklere
    • Love og regler
    • Gratis moduler og temaer
  • České fórum
    • Instalasi, Konfigurasi dan upgrade
    • Obecná diskuze
    • Bezplatné moduly a šablony
    • PrestaShop vývojáři
    • PrestaShop obchodníci
  • Bahasa Indonesia
    • Diskusi Umum
    • Podpora a pomoc komunity
    • Laporan Bug
    • Jasa, Promosi & Lowongan Kerja
  • Svenskt forum
    • Allmän diskussion
    • Installation, konfigurering och uppdatering
  • Forumul românesc
    • Discuţii generale
    • Instalare, configurare şi upgrade
  • Pусский язык
    • Обсуждение скрипта
    • Установка, Настройка, Обновление
    • Прием багов
  • Slovenské fórum
    • Všeobecná diskusia
    • Podpora a pomoc komunity
    • PrestaShop obchodníci
    • PrestaShop vývojári
    • Bezplatné moduly a šablóny
  • Türkçe Topluluğu
    • Genel Konular
    • Topluluk desteği ve yardım
    • PrestaShop Tüccarları
    • Prestashop Geliştiricileri
    • Ücretsiz Modül ve Temalar
  • Diễn đàn tiếng Việt
    • Thảo luận chung
    • Hỗ trợ từ cộng đồng
    • Dành cho chủ doanh nghiệp / cửa hàng
    • Dành cho lập trình viên
  • PrestaShop Communities
    • اللغه العربيه [Arabic]
    • Ελληνικά [Greek]
    • עִבְרִית [Hebrew]
    • 中文
    • Magyar [Hungarian]
    • 日本語 [Japanese]
    • Lietuviškai [Lithuanian]
    • انجمن فارسی [Persian]
    • ไทย [Thai]
    • Malaysia [Malaysian]
    • Eesti [Estonian]
    • Slovenščina [Slovenian]
    • Српски [Serbian]
  • IP. Board Forum
    • IP. Board Forum Questions and Issues
  • Archive
    • Zapłać Moduły i Szablony [ARCHIVE]
    • Moduly, upravy a dizajn [ARCHIVE]
    • Phát triển và các mô-đun [ARCHIVE]
    • Yazılım, Modül ve Tema [ARCHIVE]
    • Модули, Шаблоны [ARCHIVE]
    • Module şi teme [ARCHIVE]
    • Pengembangan dan Modul [ARCHIVE]
    • Moduler och teman [ARCHIVE]
    • Ecommerce x PrestaShop [ARCHIVE BOARD]
    • Vývoj a moduly [ARCHIVE]
    • Kostenpflichtige Module, Templates [ARCHIVE]
    • Módulos y temas pagos [ARCHIVE]
    • Módulos e temas pagos [ARCHIVE]
    • Servizi commerciali [ARCHIVE]
    • Forum - Feedback Contributor
    • PrestaShop Cloud

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Found 13 results

  1. Hello, Is there a way to disable orderconfirmation for importing orders from multichannels? We are importing orders from BOL.com (NL) and the customers shouldn't receive an order confirmation e-mail (because of different calculating prices). There is a way if we delete this part in the code in general so nobody receives an e-mail. Then we can make a specific status and add the order_conf. mail voor our own customers. but maybe there is an easier way to make this possible? thanks, Arjan
  2. Buenas noches, Estoy programando un módulo que cambie el estado de un pedido una vez finalizado, independientemente del modo de pago o si es un pago confirmado o una transferencia bancaria. Para ello estoy utilizando el hook orderConfirmation. Al realizar un pedido y finalizarlo el cliente debería mostrarse la página de confirmación del pedido, en el caso de la transferencia se mostrarían los datos bancarios, etc, en el pago contra reembolso la cantidad que será pagada, etc, pero sin embargo lo que muestra es el error genérico "Hay un problema con su pedido, póngase en contacto con el servicio de atención al cliente. servicio de atención al cliente" <?php public function hookOrderConfirmation($params) { if ($params) { $objOrder = $params['objOrder']; if (Validate::isLoadedObject($objOrder)) { $id_order = (int)$objOrder->id; $order = new Order($id_order); if (!Validate::isLoadedObject($order)) { return; } /// código por aquí, el nuevo id de estado para el pedido será 50 /// $history = new OrderHistory(); $history->id_order = $id_order; $history->id_employee = 44; $history->changeIdOrderState(50, $id_order); $history->add(true); $history->save(); //¿debería asignar aquí una plantilla? } } } ?> El pedido cambia correctamente de estado y aparentemente todo es correcto, pero siempre muestra el warning. Entiendo que a la plantilla de confirmación del tipo de pago que sea no le está llegando $status = 'ok' o lo que necesite que le llegue y por eso muestra el error, pero estoy un poco perdido a la hora de como corregir eso. ¿Debo añadir algún código al finalizar el cambio de estado del pedido? ¿Quizás no es este el hook ideal para lo que quiero hacer? El pedido debería cambiar de estado cuando está completamente finalizado y ya ha entrado para ser procesado. Estoy usando Prestashop 1.6 ,Gracias por cualquier ayuda que me podáis prestar, Saludos!
  3. Bonjour, Depuis plusieurs mois, nous rencontrons des problèmes avec certaines commandes payées par Ingenico / Ogone. Voici les symptomes: La page de confirmation de commande prend du temps à se charger (pourtant nous ne constatons pas de processus qui surcharge notre serveur). Le paiement du client est effectué correctement du côté d'Ingenico. Le client ne reçoit pas sa confirmation de commande par e-mail. Dans le BO, le statut de la commande ne se met pas à jour, il est impossible pour nous de savoir que la commande est confirmée. Précisons que plusieurs commandes peuvent passer sans problème avant d'être confronter au même problème. Nous ne comprenons pas l'origine de ce problème. Avez-vous déjà été confronté à ce problème ?
  4. Bonjour, voilà j'ai un souci avec un code de tracking qui visiblement ne remonte pas les infos... 🤔 jai mis 3 variables dynamiques : $total_paid_tax_incl $total_shipping_tax_incl $product_id mais visiblement je ne doit pas avoir la bonne syntaxe, malgré plusieurs tentatives.... et là je commence à perdre pieds je vous inscrit mon code ci-dessous : <script type="text/javascript"> var _mo = _mo || []; _mo.push(['_key','000000000']); _mo.push(['_ca','$total_paid_tax_incl','']); _mo.push(['_livraison','$total_shipping_tax_incl','']); _mo.push(['_articles','$product_id','']); (function() { var mo = document.createElement('script'); mo.type = 'text/javascript'; mo.async = true; mo.src = 'https://fichier.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(mo, s);})(); </script> quelqu'un pourrais m'éclairer sur ce sujet ? Pour précision ce script est insérer sur mon fichier orderconfirmation.tpl" Sur Prestashop 1.6 merci par avance pour vos réponses
  5. Bonjour, voilà j'ai un souci avec un code de tracking qui apparement ne remonte pas... voici mon code ci-dessous : <script type="text/javascript"> var _mo = _mo || []; _mo.push(['_key','000000000']); _mo.push(['_ca','$total_paid_tax_incl','']); _mo.push(['_livraison','$total_shipping_tax_incl','']); _mo.push(['_articles','$product_id','']); (function() { var mo = document.createElement('script'); mo.type = 'text/javascript'; mo.async = true; mo.src = 'https://fichier.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(mo, s);})(); </script> jai mis les 3 variables dynamiques : $total_paid_tax_incl $total_shipping_tax_incl $product_id mais visiblement je ne doit pas avoir la bonne syntaxe malgré plusieurs tentatives.... et là je commence à perdre pieds quelqu'un pourrais m'éclairer sur ce sujet ? Pour précision ce script est insérer sur mon fichier orderconfirmation.tpl" merci par avance pour vos réponses
  6. Ciao a tutti! Per un nostro Cliente di cui gestiamo l'e-commerce avremmo bisogno di uno sviluppatore che crei una thank you page nuova. In sostanza abbiamo bisogno di una pagina raggiungibile solo da chi ha completato il processo di checkout che sia interamente modificabile da noi possibilmente in HTML e con un URL separato e unico. Sapete se è possibile? Grazie mille!!! Greta
  7. Hola a todos. Tengo un requerimiento que consiste en hacer el logout del cliente justo después de confirmar un pedido, es decir, en la pantalla de confirmación, después de pulsar el botón de confirmar se tiene que confirmar el pedido y justo después hacer el logout del cliente. He mirado un poco y creo que se tiene que hacer en el orderconfirmation.tpl. ¿Alguien me puede ayudar y decirme donde tengo que hacer la llamada al logout y con qué sentencia? estoy un poco perdido y no sé como abordarlo. Gracias de ante mano. Un saludo.
  8. Hola a todos. Tengo un requerimiento que consiste en hacer el logout del cliente justo después de confirmar un pedido, es decir, en la pantalla de confirmación, después de pulsar el botón de confirmar se tiene que confirmar el pedido y justo después hacer el logout del cliente. He mirado un poco y creo que se tiene que hacer en el orderconfirmation.tpl. ¿Alguien me puede ayudar y decirme donde tengo que hacer la llamada al logout y con qué sentencia? estoy un poco perdido y no sé como abordarlo. Gracias de antes mano. Un saludo.
  9. I have a problem with my backoffice. I have experienced that some customers does not get any order confirmation (and any other order updates), when they have made a purchase on my shop. I use the Warehouse theme, but their support says that my issue is not theme-related. I guess the problem is related to the fact that some customers do not get directly linked to the order in backoffice. (attached I have made a pic, to try to explain the issue. The black boxes in the pic shows the orders which did not receive any order information) Prestashop version: PrestaShop™ 1.6.0.9 URL: www.jewelier.dk I appreciate your help, and really hope you can identify any problems on my shop. Thank you in advance. Best Regards Lars Marco We will answer as soon as possible.
  10. Bonjour à tous, Je dois créer un module qui permet d'ajouter du code Javascript dans la page OrderConfirmation. Je sais ajouter du code Javascript dans le header mais dans toutes les pages. Je sais ajouter du code métier dans le Hook displayOrderConfirmation mais je ne vois pas comment ajouté du code Javascript dans le tag <head> de la page OrderConfirmation seulement. Il s'agit de Code Javascript pour un Google Analytics like qui fait des statistiques de commande. Merci de m'aiguiller
  11. I'm just on my 2nd day with the code base of prestashop and I need to modify {payment} in Order Confirmation Email. I want to change the name of a specific payment method to something else (a more descriptive name) Prestashop version: 1.4.x Target: Order Confirmation Email In the B.O, this can be found here: Tools > Translations > Modify translations > E-mail template > Core e-mails > order_conf.html But I need to be able to manipulate the variable {payment} in there. Anyone knows where this variable is handled in the code?
  12. Dag, ik zit met het volgende probleem; Ik heb twee modules geinstalleerd de eerste is buckaroo en de tweede is een module die zodra er een order geplaatst is en betaalt is de klant een mail stuurt waarmee de gebruiker zijn product nog kan tunen. in de tweede module maak ik gebruik van de hook "OrderConfirmation" zodra ik gebruik ga maken van buckaroo wordt de mail niet meer verstuurd, hoe kan dat? p.s. ik maak gebruik van prestashop 1.4.7
  13. Bonjour, Je souhaite ajouter une fonction après validation de la commande et je me demande lequel des deux hook suivant est le plus conseillée car je ne vois pas trop de différence dans la description de ceux-ci : newOrder : Appelé quand une nouvelle commande vient d'être ajoutée (peut importe son état). orderConfirmation : Appelé quand la page de confirmation de commande est affichée Merci d'avance si vous pouvez m'éclairer sur ce sujet.
×
×
  • Create New...