WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
I've recently switched my "add to cart" submit button to an image [button ...]This works in both Firefox and Chroom, and guess what, it doesnt work in IE (no version whatsoever).
GENERATE ORDER ID FOR NEW ORDERS
if (isset($_POST['add_to_cart_x']) && $_POST['add_to_cart_x'] != '') { $_POST['add_to_cart'] = 1;}
foreach ($_POST as $key => $value) { $count = 0; $ie_post_key = str_replace('_x', '', $key, $count); if ($count > 0) { $_POST[$ie_post_key] = 1; }}
Hi KevinQuote from: sozanski on March 25, 2010, 01:09:17 PMI've recently switched my "add to cart" submit button to an image [button ...]This works in both Firefox and Chroom, and guess what, it doesnt work in IE (no version whatsoever).Add to the view.php file right after the commentCode: [Select]GENERATE ORDER ID FOR NEW ORDERSthe code below:Code: [Select]if (isset($_POST['add_to_cart_x']) && $_POST['add_to_cart_x'] != '') { $_POST['add_to_cart'] = 1;}To achieve the same result for all shop navigation buttons use this code:Code: [Select]foreach ($_POST as $key => $value) { $count = 0; $ie_post_key = str_replace('_x', '', $key, $count); if ($count > 0) { $_POST[$ie_post_key] = 1; }}Regards Christoph
Hi KevinYou can achieve this by adding your html content to the product overview template at "Page Settings" => "Layout Settings" => "Overview (Header)".Regards Christoph
The problems began when doing a Paypal payment. All steps did work fine but... no email to customer.Today I did a test with Pay in Advance. This message came up. See att.So to get short; In my case Bakery is unable to send email payment notifications to the customer regardless which payment option I use. I wonder how this is possible. It's a fresh install of the latest version.The website itself is multilanguage and full SSL.
This is not a specific Bakery problem since the PHP mail() function is not working properly on your server.If you are testing localy try again on a webserver.