Jump to content

ernexus

Members
  • Posts

    25
  • Joined

  • Last visited

Contact Methods

ernexus's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

5

Reputation

  1. There is a JS error, you have an undefined variable: freeShippnigTranslation. You need to assign this variable before 984 line in cart-summary.js
  2. Check server Apache error logs, maybe there you find some clue.
  3. This only a notice. It does not cause the website to crash. How many products your site have? Have you enabled the cache in performance settings?
  4. Added the phone number to the invoice address : $formatted_invoice_address = AddressFormat::generateAddress($invoice_address, array(), '<br />', ' '); $delivery_address = new Address((int)$this->order->id_address_delivery); $formatted_delivery_address = AddressFormat::generateAddress($delivery_address, array(), '<br />', ' ');
  5. I believe you are talking about "order_conf" template. If you are using PS 1.6.1.4 you need to edit or make and override of classes/PaymentModule.php And change: $order->total_shipping = $order->total_shipping_tax_incl; to: $order->total_shipping = $order->total_shipping_tax_excl;
  6. Maybe it will help: https://www.prestashop.com/forums/topic/271137-attributes-no-impact-on-stock-how/
  7. Does the image is actually saved on server after the script execution?
  8. You could look for your server error logs, it may logged some fatal php errors.
  9. Well, possibly yes. They are using HTMLPurifier, which ensures standards-compliant output. Meaning it may change your output and for some reason it could broke.
  10. You could try to look into your website log files. If 500 error does not show any fatal errors.
  11. It's hard to tell without looking at your code. Assign your variable to smarty: $this->context->smarty->assign(array( 'your_variable' => $your_variable, )); Sample loop in tpl files: {foreach from=$invoices_collection item=invoice} {$invoice->id} {/foreach}
×
×
  • Create New...