Jump to content

validation page is blank after confirm the order


Recommended Posts

I have prestashop 1.6.0.9 running. All was well when suddenly after i wanted to test the order of a product, the last page validation, after confirming the order is blank. I used the modules bank wire and cash on delivery and with every module is returning the white page. I tried uninstalling this modules, delete them and then re-install but this didn't help. I wouldn't want to reinstall prestashop again and I wonder if there is a solution for this problem...

Link to comment
Share on other sites

  • 3 months later...

I have this error when going to validation step: http://www.kvitka.sumy.ua/module/cashondelivery/validation and the page goes blank

 

Please, help. 

 

Fatal error: Uncaught --> Smarty Compiler: Syntax error in template "/home/kvitk14/public_html/themes/default-bootstrap/mails/uk/order_conf_product_list.txt" on line 2 "{$product[\'reference\']}" - Unexpected "\" <-- thrown in/home/kvitk14/public_html/tools/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 2

Link to comment
Share on other sites

 

edit the following file

"/home/kvitk14/public_html/themes/default-bootstrap/mails/uk/order_conf_product_list.txt"

 

on line 2 you are going to see this...

{$product[\'reference\']}

change it to this...

{$product['reference']}

 

Thanks a lot! Your advise helped! I changed all lines in a file order_conf_product_list.txt in such a way:

 

{foreach $list as $product}
{$product['reference']}
 
{$product['name']}
 
{$product['price']}
 
{$product['quantity']}
 
{$product['price']}
 
{foreach $product['customization'] as $customization}
{$product['name']} {$customization['customization_text']}
 
{$product['price']}
 
{$product['customization_quantity']}
 
{$product['quantity']}
{/foreach}
{/foreach}
 
Hope this will help someone else!
Link to comment
Share on other sites

  • 4 months later...

 

edit the following file

"/home/kvitk14/public_html/themes/default-bootstrap/mails/uk/order_conf_product_list.txt"

 

on line 2 you are going to see this...

{$product[\'reference\']}

change it to this...

{$product['reference']}

I have only this to say... @bellini13 God bless you..! :)

Link to comment
Share on other sites

×
×
  • Create New...