Hi,
I got two problems I need help with
1:
When I press the confirm order button I come to a HTTP 404 error and a URL thats http://xxx.shop.wosbee.com/RedirectPayment
2:
In my notification mail everything work fine exept the product facts.
It looks like this in the mail:
#block order_basket
Product code&name: , ()
Price for one: (including VAT )
Quantity:
Price:
#endblock
Thanks for all help!
//Johan
Confirm order problem
Hello.
1. I cannot check this URL http://xxx.shop.wosbee.com/RedirectPayment , because shop with URL http://xxx.shop.wosbee.com/ does not exist.
2.Have you tried making sure "#block order_basket" is right at the start of the line with no spaces or characters before it in plaintext and in HTML text?
Check variables in Orders/Settings/Message settings/Message templates/Default Order Notification (for customer) in plaintext:
Products
------------------------------------------------
#block order_basket
Product code&name: $item_code$, $product_name$ ($options$)
Price for one: $price$ (including VAT $vat$)
Quantity: $quantity$
Price: $total$
#endblock
In HTML text:
<h2>Products</h2>
<hr />
<dl>
#block order_basket
<dd>Product code&name: $item_code$, $product_name$ ($options$)</dd>
<dd>Price for one: $price$ (including VAT $vat$)</dd>
<dd>Quantity: $quantity$</dd>
<dd>Price: $total$</dd>
<dd><br /></dd>
#endblock
</dl>
Best regards,
Roman