Jump to content

ivankaa

Members
  • Posts

    14
  • Joined

  • Last visited

Profile Information

  • Location
    Slovakia
  • Activity
    Developer

ivankaa's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

3

Reputation

  1. Hi, i still have this error on Prestashop 8.0.4 For me the file manager is working okay but for other users not.. There is still this error mentioned above.. No solution for me is working Any ideas please? Thanks for any help
  2. Hello, I tried to change shipping and inovice address in order. Address has changed, but address in invoice has not been updated. It is possible to change address in invoice or is this a bug? Thank you for help.
  3. Hi all, I have noticed that the mobile theme doesn't have guest checkout behavior. There is only the text: 'Missing the guest checkout behaviour' at the end of file authentication-choice.tpl. It is possible to complete this code with som working solution? Thanks for help.
  4. Tak asi je rozdiel podla toho ci clovek potrebuje mini hosting alebo napriklad unlimited tak 120£ je super cena, to asi u nas sa zohnat neda, aj ked neviem koho myslis tym monopolom? podla mna ani moc nie je, je tu dost vsivavej konkurencie najma ked bezny ludia tomu nie moc rozumeju..
  5. Dakujem za info, uz ani neviem ako som to vyriesila, myslim ze som nakoniec vyriesila cez google smtp. Aj ked podla mna je Websupport zo slovenskych poskytovatelov hostingu najlacnejsi a najlepsi, co sa tyka cenovo aj kvality sluzieb, aj ked je pravda, ze vyuzivam len custom hosting vacsinou s najnizsimi parametrami, tak cenovo je to vyhodne. Teda aspon si myslim, nakolko som nic lepsie nenasla
  6. So here is the solution 1. file classes/OrderHistory.php Get invoice number from database and send it to data array: $result = Db::getInstance()->getRow(' SELECT osl.`template`, c.`lastname`, c.`firstname`, osl.`name` AS osname, c.`email`, o.`invoice_number` FROM `'._DB_PREFIX_.'order_history` oh LEFT JOIN `'._DB_PREFIX_.'orders` o ON oh.`id_order` = o.`id_order` LEFT JOIN `'._DB_PREFIX_.'customer` c ON o.`id_customer` = c.`id_customer` LEFT JOIN `'._DB_PREFIX_.'order_state` os ON oh.`id_order_state` = os.`id_order_state` LEFT JOIN `'._DB_PREFIX_.'order_state_lang` osl ON (os.`id_order_state` = osl.`id_order_state` AND osl.`id_lang` = o.`id_lang`) WHERE oh.`id_order_history` = '.(int)($this->id).' AND os.`send_email` = 1'); if (isset($result['template']) AND Validate::isEmail($result['email'])) { $topic = $result['osname']; $data = array('{lastname}' => $result['lastname'], '{firstname}' => $result['firstname'], '{id_order}' => (int)$this->id_order); if ($templateVars) $data = array_merge($data, $templateVars); $order = new Order((int)$this->id_order); $data['{total_paid}'] = Tools::displayPrice((float)$order->total_paid, new Currency((int)$order->id_currency), false); $data['{order_name}'] = sprintf("#%06d", (int)$order->id); $data['{invoice_number}'] = (int) $order->invoice_number; 2. file mails/en/bankwire.html Show invoice number: {invoice_number}
  7. Hi everybody, can someone help me how to get invoice number into mail, e.g. bankwire mail? I use invoice number as variable symbol in PDF invoice and I also want to send this variable symbol with other informations about bankwire payment. I tried some code modification but without success. Thank for help.
  8. Ahojte, viete mi prosim pomoct s nastaveniami odosielania mailov z Prestashopu u webhostingu od Websupport? Pouzivam PS verzie 1.4.6.2, nefunguje mi posielanie mailov ani cez phpmail, ani cez smtp. Dakujem.
  9. This code may help to show additional shipping cost in product.tpl: {convertPrice price=$product->additional_shipping_cost}
  10. Hello, does anybody knows how to display price with tax in blockviewed module? Still don´t find a solution for his. Thanks.
  11. Hello, does anybody know how to display price with tax in blockviewed module? I didn´t find a solution yet. Thanks.
  12. Hello, I need also help with this topic. Any help please? Thnx
×
×
  • Create New...