Re: Order Editor 1.3.7 Issues
Well, it's that time of year when I review what is good and what is bad about my setup. I am making some cool changes to my zen store and fixing some annoying little bits, too.
Here's one:
I use Zen 1.3.8a and an old version of Edit Orders along with dozens of Mods big and little. One is the Quantity Discounts Mod. When I edit an order, the discount shows up as a positive number in the edit box. If I don't manually add a minus sign in front of it, the total comes out wrong after i edit. It would be no big deal if we didn't have customers who really look at these things and a few complained before I figured out how it happened.
Is there a quick fix for this? I'd really rather not go through and do a big upgrade. My files, including the main order pages in the admin, are heavily modified. It would not be easy.
Re: Order Editor 1.3.7 Issues
So, of course I found the answer immediately after posting this. Duh. Anyway, it's a class thing and That Software Guy mentions the fix in a post on these forums with a link that leads right to the instructions:
http://thecartblog.com/2009/12/21/ze...counting-mods/
Re: Order Editor 1.3.7 Issues
unfortunately I don't have another discount mod just the stores gift certificate one...so when I go into edit for adding an item that is a prize won by the customer or add a gift certificate amount then I have to manyally add that minus sign or it will add it to the bundle.
although at times it confuses me cause i add the minus sign and it is added not deducted.
of course since adding "g" update...I have had to reupload the private area files and the edit order files to get them to show their admin parts...lol
if not one thing its another but would not trade this store software for another.
Re: Order Editor 1.3.7 Issues
Hi!
Just downloaded the newest version (2.0.3) and installed it on my site that runs on ZC 1.3.9g.
I can't add products to the orders, just beeing sent to the admin index page.
Any fix for that?
Cheers
Endre
Re: Order Editor 1.3.7 Issues
Quote:
Originally Posted by
Endre
Hi!
Just downloaded the newest version (2.0.3) and installed it on my site that runs on ZC 1.3.9g.
I can't add products to the orders, just beeing sent to the admin index page.
Any fix for that?
Cheers
Endre
Sounds like your're install is either incorrect or the files were corrupted from the FTP upload.. The add products feature works perfectly.. Suggest re-downloading and re-installing the package..
Re: Order Editor 1.3.7 Issues
Hi.
Thanks for the reply.
I did as you suggested and reinstalled this module, but still no "add product" feature working.
Are you sure this works on 1.3.9?
All other aspects of the module works fine.
In the read_me.txt it's referred to ZC 1.3.8.
I am still going to use this module, but I would be over the moon if there was any way of getting the "Add product" feature to work, and not send me to admin index page.
Cheers
ENdre
Re: Order Editor 1.3.7 Issues
Quote:
Originally Posted by
Endre
Hi.
Thanks for the reply.
I did as you suggested and reinstalled this module, but still no "add product" feature working.
Are you sure this works on 1.3.9?
All other aspects of the module works fine.
In the read_me.txt it's referred to ZC 1.3.8.
I am still going to use this module, but I would be over the moon if there was any way of getting the "Add product" feature to work, and not send me to admin index page.
Cheers
ENdre
I am using it on Zen Cart 1.3.9.. Everything works including the "Add Product" feature..
Re: Order Editor 1.3.7 Issues
I have been struggling with the same for 2 days now on 1.39h and whatever i try (1.53 and 2.03) still no add product.
I cleaned the whole file back to the bones and it has something to do with the page calling itself.
I think somewhere between 1.38a and 1.39f there has been a change in what is allowed and what not.
Still fighting with it and as someone has a clue?
Re: Order Editor 1.3.7 Issues
Quote:
Originally Posted by
asekeris
I have been struggling with the same for 2 days now on 1.39h and whatever i try (1.53 and 2.03) still no add product.
I cleaned the whole file back to the bones and it has something to do with the page calling itself.
I think somewhere between 1.38a and 1.39f there has been a change in what is allowed and what not.
Still fighting with it and as someone has a clue?
Not sure what's going on with your install. I can verify that I am running the current version of Edit Orders (v 2.03) on a vanilla install of the latest version of Zen Cart 1.3.9 and Edit Orders works just fine.. only edits I made were to get it to work with Super Orders versus the default orders.php (requires minor edits so that the redirects to orders.php go to super_orders.php..)
Re: Order Editor 1.3.7 Issues
Quote:
Originally Posted by
asekeris
I have been struggling with the same for 2 days now on 1.39h and whatever i try (1.53 and 2.03) still no add product.
I cleaned the whole file back to the bones and it has something to do with the page calling itself.
I think somewhere between 1.38a and 1.39f there has been a change in what is allowed and what not.
Still fighting with it and as someone has a clue?
I had the same problem. it is because 'add_product' is in the link.
Here is how I have fixed it.
In store/includes/filenames.php add;
define('FILENAME_EDIT_ORDER', 'edit_order');
to the end
In admin/includes/init_includes/init_sessions.php
change this;
if (strpos ( $PHP_SELF, FILENAME_PRODUCTS_PRICE_MANAGER ) === FALSE && strpos ( $PHP_SELF, FILENAME_PRODUCTS_OPTIONS_NAME ) === FALSE && (strpos( $PHP_SELF, FILENAME_CURRENCIES ) === FALSE) && (strpos( $PHP_SELF, FILENAME_LANGUAGES ) === FALSE) && (strpos( $PHP_SELF, FILENAME_SPECIALS ) === FALSE)&& (strpos( $PHP_SELF, FILENAME_FEATURED ) === FALSE)&& (strpos( $PHP_SELF, FILENAME_SALEMAKER ) === FALSE))
to this;
if (strpos ( $PHP_SELF, FILENAME_PRODUCTS_PRICE_MANAGER ) === FALSE && strpos ( $PHP_SELF, FILENAME_EDIT_ORDER) === FALSE && strpos ( $PHP_SELF, FILENAME_PRODUCTS_OPTIONS_NAME ) === FALSE && (strpos( $PHP_SELF, FILENAME_CURRENCIES ) === FALSE) && (strpos( $PHP_SELF, FILENAME_LANGUAGES ) === FALSE) && (strpos( $PHP_SELF, FILENAME_SPECIALS ) === FALSE)&& (strpos( $PHP_SELF, FILENAME_FEATURED ) === FALSE)&& (strpos( $PHP_SELF, FILENAME_SALEMAKER ) === FALSE))
That's it. Your add product should now be working.
It is quite obvious that this is for security and I haven't looked at any possible security issues that this change may cause so USE THIS AT YOUR OWN RISK.