Jump to content

Search the Community

Showing results for tags 'ps_wirepayment'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Community Help and Support
    • PrestaShop Download
    • PrestaShop Addons
  • 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 12 results

  1. Saludos con todos, Estoy intentando editar el módulo ps_wirepayment, lo que busco es que si el cliente escoge esa opción deba subir un archivo PNG, JPG o PDF de forma obligatoria y este archivo se adjunte como un link al momento de enviar la orden de compra, para lo cual estoy haciendo lo siguiente: 1.- Edite el archivo modules\ps_wirepayment\views\templates\hook\ps_wirepayment_intro.tpl Dentro de ese archivo añadí los siguientes tags HTML <h6>Adjunta tu comprobante de pago</h6> <input type="file" name="fileUpload" accept="image/png, image/jpeg"/> 2.- Posterior a eso revisé el código del modulo modules\ps_wirepayment\ps_wirepayment.php public function hookPaymentOptions($params) { if (!$this->active) { return []; } if (!$this->checkCurrency($params['cart'])) { return []; } $this->smarty->assign( $this->getTemplateVarInfos() ); $newOption = new PaymentOption(); $newOption->setModuleName($this->name) ->setCallToActionText($this->trans('Pay by bank wire', [], 'Modules.Wirepayment.Shop')) ->setAction($this->context->link->getModuleLink($this->name, 'validation', [], true)) ->setAdditionalInformation($this->fetch('module:ps_wirepayment/views/templates/hook/ps_wirepayment_intro.tpl')) ; return [ $newOption, ]; } Comprendo que la acción de ese template la está realizando el archivo modules\ps_wirepayment\validation.php , (Favor me corrigen si estoy equivocado) 3.- Para comprender las acciones que va realizando el código inserté 2 registros en la tabla ps_configuration INSERT INTO ps_configuration (`id_configuration`, `id_shop_group`, `id_shop`, `name`, `value`, `date_add`, `date_upd`) VALUES ( CONVERT((select MAX(pc.`id_configuration`)+1 as c FROM ps_configuration pc), SIGNED),'','','HA_TRAK1','',curdate(),curdate()); ----------------------------------------------------------------------------------------- INSERT INTO ps_configuration (`id_configuration`, `id_shop_group`, `id_shop`, `name`, `value`, `date_add`, `date_upd`) VALUES ( CONVERT((select MAX(pc.`id_configuration`)+1 as c FROM ps_configuration pc), SIGNED),'','','HA_TRAK2','',curdate(),curdate()); 4.- Lo que hice es intentar actualizar esos registros desde las primeras líneas de modules\ps_wirepayment\validation.php pero no funcionó 😢 , también añadí la misma línea al momento de renderizar el formulario pero tampoco funcionó no comprendo que estoy haciendo mal. /* modules\ps_wirepayment\validation.php */ Configuration::updateValue('HA_TRAK1', 's1'); $_FILES = Tools::fileAttachment('fileUpload'); if (isset($_FILES) && !empty($_FILES['joinFile']['name'])) { Configuration::updateValue('HA_TRAK2', 's2'); } /* modules\ps_wirepayment\ps_wirepayment.php */ public function renderForm() { Configuration::updateValue('HA_TRAK1', 'renderForm'); ... ... Por favor si me podrían dar una mano se los agradecería mucho. @Pixefora D @shacker @luishuaymana
  2. Salut à tous, j'ai installé le module de paiement par virement bancaire sur mon site prestashop 1.7.7.0 et je souhaite rendre tout le champ "Adresse de la banque" cliquable. Où retrouver le champ "Adresse de la banque" et comment le rendre cliquable? Merci de bien vouloir m'aider
  3. ¡Hola buenas! Alguien podría enviarme el modulo de transferencia bancaria para prestashop 1.7, lo he eliminado por error y no lo localizo. ¡Muchas gracias!
  4. Hi, I'm trying to change Prestashop to use only "id" instead of reference. I've changed a lof of files in themes/themename/templates/checkout & themes/themename/templates/customer but I cant find anywhere the location of the last one. When my customer purchases with a wire transfer payment he sees the "Order confirmation" page , bank details & the following text: Please enter your order number GQSKJZGEJ in the bank transfer description. We have also sent you this information by email. And I can't find it anywhere... Can anyone help?
  5. Salve a tutti, cerco aiuto per risolvere il seguente errore. Dopo che l'utente ha creato un ordine e scelto il pagamento (che funziona) viene dapprima rimandato ad una pagina "/module/ps_wirepayment/validation" con errore 500. Aggiorrnando la pagina si ottiene il messaggio:"Il carrello non può essere caricato o un ordine è già stato creato con questo carrello". Anche se installato il modulo mailalerts non ricevo nessuna notifica circa nuovo ordine e pagamento. L'ordine e il pagamento vanno a buon fine. Grazie
  6. Prestashop 1.7 kopia modułu „Płatność Przelewem” ps_wirepayment (wcześniej bankwire) Dzień Dobry, dla shopu, który właśnie urządzam (PS 1.7.5.2, Standard Template) potrzebuję kopii modułu „Płatnośc Przelewem”. Dla wersji 1.6 znalazłem taką instrukcję: http://rocinantesoftware.blogspot.com/2015/11/how-to-make-copy-of-prestashop-16-bank_2.html Zrobiłem jak napisano w instrukcji oczywiście uwzględniając, że moduł nazywa się teraz „ps_wirepayment“ a nie „bankwire.“ Niestety nowo powstały moduł nie działa na 100 %. W panelu administracji moduł jest widoczny i można wprowadzić parametry. We FrontEnd klient może wybrać nowy rodzaj płatności i złożyć zamówienie. następujące rzeczy nie działają jednak jak należy 1) (To największy problem) Jako wzór emaila do klienta wysyłanego po zakupie brany jest plik pierwotnego modułu „bankwire.html“ zamiast nowo stworzonego pliku „banktransfer.html“ Czy ktoś wie, w którym miejscu modułu jest przypisane, z jakiego pliku brany jest wzór maila do klienta? . 2) Nie mogę przetłumaczyć angielskich textów tego modułu. W panelu do tłumaczenia modułów po wybraniu nowego modułu nie wyświetlają się pola do wpisywania tłumaczeń. Drugi problem mogę jakoś ominąć, dlatego będę szczególnie wdzięczny za wskazówki odnośnie punktu 1) Pozdrawiam Marian W.
  7. Prestashop 1.7 Kopie (Klonen) des Banküberweisung Moduls ps_wirepayment (früher bankwire) Hallo, für ein shop, das ich gerade aufsetze (PS 1.7.5.2, Standard Template), brauche ich eine Kopie des Banküberweisung Moduls ps_wirepayment (früher bankwire). Dazu habe ich folgende Anleitung gefunden, allerdings ist sie für die Version 1.6 http://rocinantesoftware.blogspot.com/2015/11/how-to-make-copy-of-prestashop-16-bank_2.html So habe ich das auch gemacht (natürlich unter Berücksichtigung, dass das Modul jetzt „ps_wirepayment“ und nicht „bankwire“ heißt). Das neu erstellte Modul „ps_transferpayment“ funktioniert leider nicht zu 100 %. Es ist in BO als Modul sichtbar, man kann es als Zahlungsart konfigurieren, und die Parameter setzen. Im FrontEnd kann man es als Zahlungsart auswählen und Bestellung durchführen. An drei Stellen funktioniert es leider nicht richtig. 1.) (Für mich das größte Problem) Als Vorlage für die Email nach dem Kauf wird wie bei dem ursprünglichen Modul die Datei „bankwire.html“ statt der neu erstellten Datei „banktransfer.html“ genommen. Daher die Frage: An welcher Stelle im Modul wird gesetzt, welche Datei als Vorlage für die Email nach dem Kauf genommen wird? 2.) Ich kann die englischen Texte des Moduls nicht übersetzen. Im Übersetzungspanel im BO erscheinen beim Auswählen des neuen Moduls keine Felder für die Übersetzung. Version 1.7 hat vielleicht ein anders Konzept für Übersetzungen??? 3.) Im BO erscheint das neue Modul in „Modele Manager“ aber nicht unter „Zahlungsart/Zahlungsarten“. Aber unter „Zahlungsart/Voreinstellungen“ erscheint es als eine eingerichtete Zahlungsart und kann wie andre Zahlungsarten konfiguriert werden. Mit Problemen 2) und 3) kann ich leben, bzw. 2) kann ich umgehen daher wäre ich für Hinweise bzgl. Frage 1) besonders dankbar. Gruß Marian W.
  8. Vier Jahre später die selben Probleme. Im Backend werden die Bestellnummern mit Artikel-Nr. bezeichnet und Features werden generell mit Maßnahmen übersetzt. Außerdem werden Teile des Banküberweisungsmodules (v2.0.4) nicht übersetzt, weil die Sätze im Modul anders formuliert sind als in den Übersetzungsdateien und deshalb nicht gefunden und somit auch nicht übersetzt werden. Eine spezielle Übersetzungsdatei für das Modul war nicht dabei. Präzise betrachtet fehlen für die payment_return.tpl Übersetzungen in der ModulesWirepaymentShop.de-DE einige Sätze. Natürlich könnte ich die wohl selbst ergänzen. Leider habe ich keine Ahnung wie die dazugehörigen IDs vergeben werden. PrestaShop v1.7.4.4
  9. Hola, a ver si alguno puede ayudarme. Actualicé a la versión 1.7.5.0 y ahora pasa que cuando el cliente selecciona el método de pago y quiere concretar la compra, el sistema lo manda a la pagina https://dcshop.com.uy/module/ps_wirepayment/validation que solo dice Error Fatal. Saludos y agradecido de cualquier ayuda.
  10. Bonjour, Depuis quelque jours les mails de virements et chèque ne fonctionne plus correctement : (Les modules sont à jour.) et chèque : la première choses que j'ai fait c'est de copié les fichiers du coeurs vers le thème mais pareils. Merci d'avance pour votre aide
  11. ps_wirepayment Bank wire module does not work, any ideas I get error 500 Server Error Oops, something went wrong. Try to refresh this page or feel free to contact us if the problem persists. I also get debug message ContextErrorException in Cart.php line 86: Warning: Declaration of Cart::updateQty($quantity, $id_product, $id_product_attribute = NULL, $id_customization = false, $operator = 'up', $id_address_delivery = 0, Shop $shop = NULL, $auto_add_cart_rule = true) should be compatible with CartCore::updateQty($quantity, $id_product, $id_product_attribute = NULL, $id_customization = false, $operator = 'up', $id_address_delivery = 0, Shop $shop = NULL, $auto_add_cart_rule = true, $skipAvailabilityCheckOutOfStock = false) in Cart.php line 86 at ErrorHandler->handleError('2', 'Declaration of Cart::updateQty($quantity, $id_product, $id_product_attribute = NULL, $id_customization = false, $operator = 'up', $id_address_delivery = 0, Shop $shop = NULL, $auto_add_cart_rule = true) should be compatible with CartCore::updateQty($quantity, $id_product, $id_product_attribute = NULL, $id_customization = false, $operator = 'up', $id_address_delivery = 0, Shop $shop = NULL, $auto_add_cart_rule = true, $skipAvailabilityCheckOutOfStock = false)', '/home/gb-online.co.uk/eshop/override/classes/Cart.php', '86', array('className' => 'Cart', 'classDir' => '/home/gb-online.co.uk/eshop/')) in PrestaShopAutoload.php line 152 at require_once() in PrestaShopAutoload.php line 152 at PrestaShopAutoload->load('Cart') at call_user_func(array(object(PrestaShopAutoload), 'load'), 'Cart') in DebugClassLoader.php line 172 at DebugClassLoader->loadClass('Cart') at spl_autoload_call('Cart') in FrontController.php line 414 at FrontControllerCore->init() in CategoryController.php line 74 at CategoryControllerCore->init() in Controller.php line 186 at ControllerCore->run() in Dispatcher.php line 428 at DispatcherCore->dispatch() in index.php line 28
  12. I'm using Prestashop 1.7. When I place an order in the back office (manual order) the email sent to customer has some blank fields. There is the fields that not show correctly {bankwire_owner} {bankwire_details} {bankwire_address} Please help to fix this.
×
×
  • Create New...