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
Quote from: rrjbeans on July 20, 2008, 10:21:26 PMIs there a way to have the admin get a different order confirmation than the customer.Hi rrjbeansNo, it is the same and it is not modifiable in the bakery settings.But if you like to it should not be a problem to modify the code slightly. Have a look into:view_summary.php => look for the "// CONFIRMATION E-MAILS AND INVOICE" commentview.php => look for the "// PAYMENTS, SHOW CONFIRMATION AND SEND E-MAIL" commentRegards Christoph
Is there a way to have the admin get a different order confirmation than the customer.
Is it possible to have 2 different shops on 1 site? Of course, on other pages but within 1 site.
I created a banner for your module.
I ship to US and international customers but am finding that the zip code field is always "required." A customer can't put anything in the field other than numbers so can't just type in "none" or leave it blank or whatever. I searched the view_form.php file but can't seem to grasp what is generating the error message. Can you steer me in the right direction?
The file you are seeking for is called view.php.Line 349 et sqq. check for blank fields. You could exclude the zip field by coding something like: if ($value == "" AND $field != "zip") {Line 422 et sqq. check the zip code. Allowed are at least 4 and up to 10 chars a-z, A-Z, space, - (hyphen) and all digits 0-9, so "none" should be ok to enter.
Any good coder able to get Authorize.net payment gateway to work with this? I have looked at it some but not sure how to integrate into this. Here is a link to authorize.net on using the SIM method, its the best one because the user does not have to get SSL
Is it possible to add payment gateways likehttp://www.authorizenet.com/https://www.2checkout.comhttp://www.chronopay.com/http://www.ipayment.de/http://www.paynova.com/http://www.psigate.com/http://www.secpay.com/http://www.trustcommerce.com/
$total = $items[$i]['quantity'] * $items[$i]['price'];
$total = $items[$i]['quantity'] * ($items[$i]['price'] + $items[$i]['shipping']);
// Determine shipping sum of all items specifiedfor($i = 1; $i <= sizeof($items); $i++) { $shipping_sum[] = $items[$i]['shipping'];}$shipping_sum = array_sum($shipping_sum);
How can I make the Item Price editable for the user....?
If I place the <input type="text" ..../> tag in the Page settings, should it be in the "Product (Footer)" section as well as in the "Page (Product-Loop)" section??? Where exactly should I put it to make sure it is sent to the admin side as well as the payment gateway???