Found a solution to my problem. Not sure if its the right way to do it since I'm not a coder, but whatever works.
in /admin/create_orders.php look at line 42. It will say:
Change it so it now says:Code:WHERE `customers`.`customers_id` = ".$customer_id;
You may get the following error message after this fix:Code:WHERE ".TABLE_CUSTOMERS." . `customers_id` = ".$customer_id;
If you get this look in the /admin/create_orders.php file for the following:Fatal error: Call to undefined function: zen_get_currency_value() in /home/content/n/e/w/newtonmrktng/html/flavorwood_store/admin/create_order.php on line 85
and comment out the line. It should work now.Code:'currency_value' => zen_get_currency_value(DEFAULT_CURRENCY),![]()
Does anyone know if this is ok to use as is with 1.3.9B? I really need to know![]()
Greetings,
Seems to work fine so far, HOWEVER :) unable to delete any orders now...
Any suggestions?
Also,
When placing a manual order through admin - it does not send an order confirmation to the customer...
Are others finding that this add-on is buggy?
For example, after creating an order and adding a product, when I change the tax amount and update nothing happens.
Are others encountering this problem?
We are running this addon on Zen Cart 1.3.9c.
We've received no error messages.
We are unable to edit orders or send the customer confirmation/welcome email after adding through admin.
We are interested in having different pay and ship modules currently installed in the store populate in the admin add order.
We can type them in, but they still show the mod's defaults (free shipper) on the customer's history screen (unless we've overlooked something).
We're looking into it, but sadly need more hours in the day...
Thanks for your work, Ivan. Peeking at your blog now.
I found i was getting a blank page after fixing the initial table error.
Found the currency function is included in this addon in admin/includes/functions/extra_functions/edit_orders.php
To fix this just upload this file or add:
to the end of this edit_orders.php file before the closing ?> tag.Code://////////////////////////////////////////////////////////////////////////////////////////////// // // Function : zen_get_currency_value // // Arguments : currency_code currency code string // // Return : currency_value // // Description : Function to retrieve the currency_value based on the currency's code // //////////////////////////////////////////////////////////////////////////////////////////////// function zen_get_currency_value($currency_code) { global $db; $currency_query = $db -> Execute("select * from " . TABLE_CURRENCIES . " where code = '" . $currency_code . "'"); if (!$currency_query->RecordCount()) { return 0; } else { return $currency_query->fields['value']; } }
This will make sure the currency symbol is inserted into the database for the order.
Hi,
Did anyone get the Tax section working on this? I don't have any tax mods added on, just have 1 tax rate set to the products but when i create an order it brings up the tax rate in the tax box does not apply the tax onto the product price?
Regards,
Breda
I'm having similar issues:
1) Can't delete orders from the admin portal - annoying, but not crucial. I can delete them in the database manually if I really want to.
2) A confirmation email is NOT sent to the customer when I use the Create Order function. Nor is the [NEW ORDER] email sent to the Admin email addresses. This is a big problem for us, the customer needs to get the confirmation email and we need to know there is a new order - we have a group of people that manage fulfillment.
3) The "freeshipper" is the default shipping profile. Even if I type in something else in the FREE SHIPPING! field, it doesn't keep the data when submitted. The invoices still say "FREE SHIPPING!" Bad! We don't offer FREE SHIPPING, ever.... How do I fix this??
Any help is greatly appreciated!
Thanks