Jump to content

weckie

Members
  • Posts

    26
  • Joined

  • Last visited

2 Followers

Profile Information

  • Location
    Netherlands
  • Activity
    User/Merchant

weckie's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Does anyone know how to disable the map at all, so that it shows only the address details not the map. I think backend will be much faster without the map. We have a very bad internet connection, and we need to disable anything that slows down working with prestashop. thanks.
  2. Don't if this is the correct thread.... But, we're having this problem with paypal at the moment. PayPal response: TIMESTAMP -> 2014-12-23T10:33:21Z L_ERRORCODE0 -> 10004 L_SHORTMESSAGE0 -> Transaction refused because of an invalid argument. See additional error messages for details. L_LONGMESSAGE0 -> Invalid character in parameter. Invalid characters include 0x0, 0x1, 0x3, 0x5, 0x7, 0x8, 0xb, 0x1a, 0x1b for example. L_SEVERITYCODE0 -> Error We don't have any clue what to do with it. But our customers can not pay with paypal now. Does anyone have any idea? Thanks in advance. Kind regards
  3. Worked perfectly Vekia. Thanks so much. Do you know if there is some kind of overview with syntaxes to use to display things? Kind regards
  4. HI. I would like to display a message in the shoppingcart, the one that shows up when you hover over your shoppingcart. I need a message displayed based on the shop id. i tried this, in the BLOCKCART.TPL file but it shows nothing: {if $id_store EQ '3'} {l s='message to be displayed' mod='blockcart'} {/if} I am not sure if $id_store is the right syntax, i also tried $id_shop, $shopID but nothing didn't work. thx for you help in advance We work with prestashop 1.6
  5. Can you please tell us what the code would be for this. Thanks
  6. Have you solved it? Maybe you like to share it with me, since i would like to have the upc and/or EAN on the product page too. Tried several things but doesn't work Thanks
  7. How can i get customers email on invoice and/or packing slip. I know how to get it in the adress field but i want it to display in some other area on invoice and slip. {$customer->email} does not work. thanks in advance.
  8. TAX Exempt option based on Ip address or country visitor comes from. fi. If visitor comes from certain country, display with or without tax ! Hope you understand what i mean.
  9. Iemand al een module beschikbaar hiervoor. Wij zoeken ook een mogelijkheid ala Sendcloud om gegevens naar delisprint danwel www.mydpd.nl te importeren. We zijn bereid om hier voor te betalen. Sendcloud heeft hiervoor een API beschikbaar, deze werkt perfect overigens.
  10. Hi, I want to be able to upload the shipping label. How can achieve that. I know when a customer write a message i will come in the backend. Answering this massege from backen it gives you an option to upload a file, i can add the shipping label then, and customer will recieve it by email. But this is only possible when a customer has sent a message. When i sent a message from backend to customer, then there is no possibilty to upload a file whatsoever. I want to be able to sent a file to customer, even when they did not write a message. Thanks Weckie
  11. I have added a little modification for those who doesnt always have free shipping amount set. If free shipping starts at is set to 0 the line will still show up in the blockcart. To solve this add the lines in blue addionally. regards Weckie
  12. And again... worked like a charm..... Thanks Pascal. My files do look a bit different then in the example... but i got it done. Just use some common sense and you'll get there. I guess it's because we run 1.5.5 My file looks like this: /** * @since 1.5 */ class HTMLTemplateDeliverySlipCore extends HTMLTemplate { public $order; public function __construct(OrderInvoice $order_invoice, $smarty) { $this->order_invoice = $order_invoice; $this->order = new Order($this->order_invoice->id_order); $this->smarty = $smarty; // header informations $this->date = Tools::displayDate($this->order->invoice_date, (int)$this->order->id_lang); $this->title = HTMLTemplateDeliverySlip::l('Delivery').' #'.Configuration::get('PS_DELIVERY_PREFIX', Context::getContext()->language->id).sprintf('%06d', $this->order_invoice->delivery_number); // footer informations $this->shop = new Shop((int)$this->order->id_shop); } /** * Returns the template's HTML content * @return string HTML content */ public function getContent() { $delivery_address = new Address((int)$this->order->id_address_delivery); $formatted_delivery_address = AddressFormat::generateAddress($delivery_address, array(), '<br />', ' '); $formatted_invoice_address = ''; $customer = new Customer((int)$this->order->id_customer); if ($this->order->id_address_delivery != $this->order->id_address_invoice) { $invoice_address = new Address((int)$this->order->id_address_invoice); $formatted_invoice_address = AddressFormat::generateAddress($invoice_address, array(), '<br />', ' '); } $this->smarty->assign(array( 'order' => $this->order, 'order_details' => $this->order_invoice->getProducts(), 'delivery_address' => $formatted_delivery_address, 'invoice_address' => $formatted_invoice_address, 'order_invoice' => $this->order_invoice, 'delivery_phone' => (!empty($delivery_address->phone) ? $delivery_address->phone : $delivery_address->phone_mobile), 'customer_email' => $customer->email )); return $this->smarty->fetch($this->getTemplate('delivery-slip')); }
  13. Yes Pascal, it was. And you helped me perfectly. This mod and the Phone mod both work great. Later today i will have a look at modding the email adress also on the delivery slip. Already saw your reply... just didnt have time for it yet Thx weckie
  14. That would be something... but as said... it's just a bonus for me.... i am already very happy with the phone number on the delivery slip
  15. Hi Pascal, I managed to get phone and email on the invoice. Only the phone on the delivery slip i got the way you explained, as said works like charm. But the Email on the delivery slip, i did nog get that right. Tried everything but gave up I am satisfied with the phone on the deliveryslip, that was most important, getting the email on there was kinda like a bonus and not neccessary. Thanks for your help.
×
×
  • Create New...