-
Re: Super Orders v3.0 Support Thread
1. No, the SO version for ZC150 is not ready yet. Hang in there, we're working on it. No ETA yet.
2. Yes, EO and SO integrate together nicely. In the EO readme, this is step 7 of the installation process. In the SO readme, check out the "Addons Integration" tab. If both are installed, a switch needs to be flipped in both of them.
3. Yes, SO will pick up your PayPal transaction data and display it to you in the admin. Depending on your settings and configuration, an email with that info will go out to your customer as well.
4. Installing SO and EO together in no way inhibits your ability to process refunds. They are built to work together.
Good luck and happy Zenning :smile:
Quote:
Originally Posted by
windsurfer
I have "edit_orders_v3.03" and not sure if this has come up at all but I was reading through the installation but didn't see anything about integrating with edit orders unless i missed it.
When i process an order payed through Paypal and use their shipping module the customer gets an e-mail from Paypal with the tracking number. I am just wondering if Super orders will pick this transaction up and updates the order or is there a way to manually enter the tracking number and when i hit update the customer is e-mailed with the updated information. I know when setting the order to shipped in edit orders the customer gets an e-mail but i can't put the tracking information in.
Also is the super orders V1.5 ready ?
Also refunds can be issued oin edit orders, will i lose that capability ?
Any thoughts ?
Thank you.
-
Re: Super Orders v3.0 Support Thread
Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
Thank you
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
windsurfer
Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
Thank you
Having TY Package Tracker installed is a choice...there's no preference among the SO or EO mod authors as to whether you use it or not. The code to make them work together was added because of popularity rather than preference.
So whether or not you use it is entirely up to you :smile:
Regarding a link for CPC, suggest creating a thread with your question in the "General Questions" area of the forum :smile:
-
Re: Super Orders v3.0 Support Thread
Thank you
I just installed TY and checked the install twice switch is set but there is no difference when i look at an invoice or edit an order placed after i installed.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
windsurfer
Thank you for the reply. I notice that you prefer to have the Ty Package Tracker package installed. I am using Canada Post and just wondering if anybody has the tracking link for CPC, perhaps this is in the wrong topic but can't find anywhere elase i can post this.
Thank you
It is the wrong topic..:yes:
Quote:
Originally Posted by
windsurfer
Thank you
I just installed TY and checked the install twice switch is set but there is no difference when i look at an invoice or edit an order placed after i installed.
Post your Ty Package Tracker questions in the Ty Package Tracker support thread please.. (and before you ask.. the link to the Ty Package Tracker support thread is in the Ty Package Tracker readme file -- a forum search would have also turned up the support thread too..)
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
Sure I'm interested.. please make sure your code is clearly commented/highlighted.. In the v1.5 ready version I'm doing away with the super_orders.php file
Well, that surely changes how this could be integrated, as I've included it in the class, but I suppose it could be a function as well.
New function to update stock:
PHP Code:
// Updates product stock upon order cancellation
function update_stock($action) {
global $db;
$order = $db->Execute("select products_id, products_quantity
from " . TABLE_ORDERS_PRODUCTS . "
where orders_id = '" . (int)$this->oID . "'");
// if order cancelled, return stock
if($action=='cancel')
{
while (!$order->EOF) {
$db->Execute("update " . TABLE_PRODUCTS . "
set products_quantity = products_quantity + " . $order->fields['products_quantity'] . ", products_ordered = products_ordered - " . $order->fields['products_quantity'] . " where products_id = '" . (int)$order->fields['products_id'] . "'");
$order->MoveNext();
}
}
// if re-opening a cancelled order, take stock
elseif($action=='reopen')
{
while (!$order->EOF) {
$db->Execute("update " . TABLE_PRODUCTS . "
set products_quantity = products_quantity - " . $order->fields['products_quantity'] . ", products_ordered = products_ordered + " . $order->fields['products_quantity'] . " where products_id = '" . (int)$order->fields['products_id'] . "'");
$order->MoveNext();
}
}
}
Updated the mark cancelled and reopen functions
PHP Code:
// timestamp the date_cancelled field in orders table
// will also NULL out date_completed field if set (you can't have both at once!)
function mark_cancelled() {
global $db;
if ($this->status == false || $this->status == "completed") {
$db->Execute("UPDATE " . TABLE_ORDERS . " SET date_cancelled = now(), order_followup = 0 WHERE orders_id = '" . $this->oID . "'");
if ($this->status == "completed") {
$db->Execute("UPDATE " . TABLE_ORDERS . " SET date_completed = NULL, order_followup = 0 WHERE orders_id = '" . $this->oID . "'");
}
if (STATUS_ORDER_CANCELLED != 0) {
update_status($this->oID, STATUS_ORDER_CANCELLED);
}
$this->status = "cancelled";
$this->status_date = zen_datetime_short(date('Y-m-d H:i:s'));
$this->update_stock('cancel'); // return stock
}
}
// removes the cancelled/completed timestamp
function reopen() {
global $db;
$db->Execute("update " . TABLE_ORDERS . " set
date_completed = NULL, date_cancelled = NULL
where orders_id = '" . $this->oID . "' limit 1");
if (STATUS_ORDER_REOPEN != 0) {
update_status($this->oID, STATUS_ORDER_REOPEN);
}
// if order was cancelled, update and take stock
if($this->status == "cancelled")
{
$this->update_stock('reopen');
}
$this->status = false;
$this->status_date = false;
}
-
Re: Super Orders v3.0 Support Thread
Two quick questions & I apologize up front if someone already covered this but, I've searched & have not found any answers.
1. How do I change the regular packing slip from the Super Orders page(not pdf) to have the "Ship To" information on the right side & the "Bill to" information on the left side like the invoice does?
2. Can I make it so no comments show up on the packing slips?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Rizla
Had SO3 installed for a while now and although only used test orders it seemed fine.
My site is beginning to receive orders and payment through paypal. However I have noticed that the payment details come through ok but the amount has not been applied automatically...
Just wondered if this is correct and I have to manually apply payment or if I have a bad install? as there is no PayPal option in the manual method.
Thanks
I have SO 3.0.1 installed.
According to the description in the download section: "- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said..."
But paypal payments are still not being applied to order balances in my store. Is this an error in my installation, or was it actually not corrected in this version yet?
If it was corrected, is there any possibility you could tell me exactly which code I need to apply to make this work?
-
Re: Super Orders v3.0 Support Thread
Discussed in several places in this support thread (a search of the thread will net you the answer you seek)
Quote:
Originally Posted by
abcisme
I have SO 3.0.1 installed.
According to the description in the download section: "- AUTO PAYMENT FOR ORDERS PAID VIA PAYPAL!!!!!!! 'Nuff said..."
But paypal payments are still not being applied to order balances in my store. Is this an error in my installation, or was it actually not corrected in this version yet?
If it was corrected, is there any possibility you could tell me exactly which code I need to apply to make this work?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Rizla
Had SO3 installed for a while now and although only used test orders it seemed fine.
My site is beginning to receive orders and payment through paypal. However I have noticed that the payment details come through ok but the amount has not been applied automatically...
Just wondered if this is correct and I have to manually apply payment or if I have a bad install? as there is no PayPal option in the manual method.
Thanks
Quote:
Originally Posted by
DivaVocals
Discussed in several places in this support thread (a search of the thread will net you the answer you seek)
Seriously, I've spent hours between yesterday and today reading through this and Super Orders 2.0 thread and there is conflicting information throughout.
Could you please just give me the correct answer?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
abcisme
Seriously, I've spent hours between yesterday and today reading through this and Super Orders 2.0 thread and there is conflicting information throughout.
The information I have posted has been QUITE consistent.. (and I have posted the same answer to this question a few places in this thread)
Quote:
Originally Posted by
abcisme
Could you please just give me the correct answer?
Seriously it's on the same page as the post by Rizla you quoted:
http://www.zen-cart.com/forum/showth...170525&page=46
-
Re: Super Orders v3.0 Support Thread
Thanks for giving me the straight answer. There have been three updates in the downloads sections since that was posted, so I incorrectly assumed it would have been in one of them.
Then I found this post: http://www.zen-cart.com/forum/showpo...&postcount=207
Which I thought might have been the code I needed.. but guess not. Just overwhelmed right now. Sorry.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
abcisme
Seriously, I've spent hours between yesterday and today reading through this and Super Orders 2.0 thread and there is conflicting information throughout.
Could you please just give me the correct answer?
Adding to what Diva said...the answer you seek can be found by reading this series of posts which address this issue:
Post 456
Post 602
Post 620
Post 621
Post 682
post 685
Post 699
All of these posts were found by doing a simple search of the thread for the keyword "Paypal".
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
I understand and had read those posts along with pretty much every post in this and the 2.0 thread. Thanks. Have had a really rough couple of days. Didn't mean to be snippy. Thanks again.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
abcisme
I understand and had read those posts along with pretty much every post in this and the 2.0 thread. Thanks. Have had a really rough couple of days. Didn't mean to be snippy. Thanks again.
You're welcome. We understand that sometimes Zen Cart and it's more intricate addons can be overwhelming to learn about. We don't withhold information to be rude....it's just time consuming to keep repeating information that's already documented. Also, doing searches and finding info you need is an important part of the learning process in terms of becoming empowered as a Zen Cart store owner (or designer or manager).
For your future reference, it helps if you list the results of your search and explain what it is about those posts you don't understand.
Also for your reference and to help you understand what you saw in the downloads section:
Those were "immediate need" fixes done by another member who generously shared with the entire community. (not the same thing as "the next release"). Also, if you read the release notes for those fixes in the downloads section, you are able to see exactly what the fixs or patches were.
None of them indicate a fix for the paypal issue, which is what you were looking for. Per the threads you found and read before posting, that fix is coming in the next release, which has been being worked on for the better part of the last year. (It's a MAJOR addition and/or change of core zen cart code. Between writing the code, testing it, perfecting it, etc...that all takes a huge amount of time done by volunteers who must put paid work, health issues, family issues, personal time, etc... ahead of the volunteer work).
It's coming...just hold on a while longer :smile:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
You're welcome. We understand that sometimes Zen Cart and it's more intricate addons can be overwhelming to learn about. We don't withhold information to be rude....it's just time consuming to keep repeating information that's already documented. Also, doing searches and finding info you need is an important part of the learning process in terms of becoming empowered as a Zen Cart store owner (or designer or manager).
For your future reference, it helps if you list the results of your search and explain what it is about those posts you don't understand.
Also for your reference and to help you understand what you saw in the downloads section:
Those were "immediate need" fixes done by another member who generously shared with the entire community. (not the same thing as "the next release"). Also, if you read the release notes for those fixes in the downloads section, you are able to see exactly what the fixs or patches were.
None of them indicate a fix for the paypal issue, which is what you were looking for. Per the threads you found and read before posting, that fix is coming in the next release, which has been being worked on for the better part of the last year. (It's a MAJOR addition and/or change of core zen cart code. Between writing the code, testing it, perfecting it, etc...that all takes a huge amount of time done by volunteers who must put paid work, health issues, family issues, personal time, etc... ahead of the volunteer work).
It's coming...just hold on a while longer :smile:
Thanks. :) I really do appreciate all of the time and effort you all put into these things. I just wish I knew how to do more myself so I didn't have to bug everyone. :frusty:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
abcisme
Thanks. :) I really do appreciate all of the time and effort you all put into these things. I really wish I knew how to do more myself so I didn't have to bug everyone. :frusty:
Asking questions is exactly what the forum and support threads are for though :smile: We were all new once and can recall the frustration. One of our goals (in addition to providing support), is to help users learn from the support provided so that they can become more independent users as time goes by. Even so, you will see posts by experienced users who have questions and issues they can't resolve on their own. (You should see some of mine - they're a real laugh fest).
Even the Zen Cart developers work as a team to help each other build new releases - I'd be surprised to hear of any one individual who knows all there is to know about ZC and it's various addons :smile:
Hang in there, you'll get the hang of it, and when you do... I promise you it will be worth the journey :smile:
-
Re: Super Orders v3.0 Support Thread
If this was the answer I really would have pointed people there.. Blindside's post is SIX years old.. It does not apply, and is not the solution..:no:
Quote:
Originally Posted by
abcisme
Thanks for giving me the straight answer. There have been three updates in the downloads sections since that was posted, so I incorrectly assumed it would have been in one of them.
Then I found this post:
http://www.zen-cart.com/forum/showpo...&postcount=207
Which I thought might have been the code I needed.. but guess not. Just overwhelmed right now. Sorry.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
misukn
Two quick questions & I apologize up front if someone already covered this but, I've searched & have not found any answers.
1. How do I change the regular packing slip from the Super Orders page(not pdf) to have the "Ship To" information on the right side & the "Bill to" information on the left side like the invoice does?
2. Can I make it so no comments show up on the packing slips?
Anyone??? :lookaroun
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
misukn
Two quick questions & I apologize up front if someone already covered this but, I've searched & have not found any answers.
1. How do I change the regular packing slip from the Super Orders page(not pdf) to have the "Ship To" information on the right side & the "Bill to" information on the left side like the invoice does?
2. Can I make it so no comments show up on the packing slips?
You are going to need tools (i.e. Firefox with the addon Firebug installed, for example) to be able to identify and isolate the code you are wanting to edit and you will want to make a back up of the files you edit before you begin.
1. To move "ship to" info to the right and "bill to" info to the left on the packing slip....What happens if you open admin/super_invoice.php and use it as a guide to help you edit admin/super_packingslip.php?
2. To remove comments from packing slips, you would have to edit admin/super_packingslip.php to identify and remove or comment out the code responsible for displaying this information on the packing slips.
Sometimes community members experienced with a specific mod will jump in and give step by step directions, or at least point you in the right direction (i.e. look at this line of that file, etc). But as nobody has done so thus far, I'm not sure this is going to happen for you.
As long as you make back ups, there's no reason you can't play around with the code and see if you are able to accomplish what you're wanting to do. It's the best way to learn if you have the time and inclination to do so.
However, if you don't have the time, inclination, or confidence to dive right in, you may want to consider hiring someone to do this for you.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
misukn
Two quick questions & I apologize up front if someone already covered this but, I've searched & have not found any answers.
1. How do I change the regular packing slip from the Super Orders page(not pdf) to have the "Ship To" information on the right side & the "Bill to" information on the left side like the invoice does?
2. Can I make it so no comments show up on the packing slips?
Adding to my previous post....
I don't know the specific answers to your questions, so all I can do is tell you what I would do if I wanted to make the changes you're wanting to make. Since I don't know how much you know or don't know, I have no way of knowing how much detail you need, so the above post was fairly general.
Here's specifically what I would do after making backups:
1. I already have the Firefox browser and the Firebug addon installed on my computer...so if you don't have those tools - get them. They are invaluable for this and many other similar tasks.
2. Using my FF browser, I would log in to my admin and launch an invoice and a packing slip for an order.
3. I would browse the packing slip with Firebug "on" to identify and isolate the code (which is probably a table) that determines where on the page the "Bill to" and "Ship to" info appears. This way, I would easily be able to find that same code in the admin/super_packingslip.php file.
4. I would repeat the same step with the admin/super_invoice.php file for the same reason.
5. I would then use a text editor like Notepad++ (or plain old Notepad, but ++ is easier to use) to open both admin/super_invoice.php and admin/super_packingslip.php.
6. Looking at them in Notepad++, I would use admin/super_invoice.php to guide me as to how to move the "Bill to" and "Ship to" table data around in admin/super_packingslip.php in such a way as to mimic the layout in admin/super_invoice.php
7. I would then use Notepad++ to make the necessary changes.
8. As I go about making changes, I would refresh the web page displaying the packing slip to see if my changes are happening as anticipated, and use Firebug to help me identify where/how I went wrong if things didn't work out as I had anticipated.
9. To remove the comments from the packing slip, I would do the same thing...use Firebug to isolate the code that displays the comments on the packing slip, then use a text editor to open and edit admin/super_packingslip.php by commenting out or removing that code and then refreshing my packing slip page to see if it worked as anticipated.
Sooooo....that's what I would do. And if that didn't work, I'd be looking for some help.
Hope this helps you - good luck and happy Zenning :smile:
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
misukn
Anyone??? :lookaroun
[FONT=Tahoma]Like other open source projects, this support forum is manned by VOLUNTEERS (ie: unpaid folks). They give of their time here when their individual schedules permit. Usually the response is pretty quick 'round these parts, but when it’s not or your question has gone unanswered this may mean one of a few things:
[/FONT]
- [FONT=Tahoma]NO ONE has an answer to your question/issue.
(Some folks will only respond when they have something MEANINGFUL to say versus a blanket “I don’t know how to do that” kind of answer.)[/FONT] - [FONT=Tahoma]Folks are just busy and will answer if/when they can..
(family and other personal obligations, day jobs, paid jobs, etc will usually trump forum participation – this is to be expected – after all it’s unrealistic to expect that folks are sitting around this forum all day and night waiting to answer questions)[/FONT]
-
Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
chadderuski
And ya know what's gonna happen, don't ya? 1.4 (2.0? Please! No death threats for mentions that!) beta will hit with a slew of changes .... mmwahahahahah!
Well, we can hope it won't be too bad! Or maybe I should say we can hope it will be real good! ;)
So I'm quoting a post from 10 May 2011, 12:31 PM for a reason..
A. Chadderuski's post turned out to be pretty darned prophetic!!! :laugh:
B. Because I am pleased to announce a BIG BRIGHT LIGHT at the end of the tunnel!!!
Super Orders for Zen Cart v1.5 is JUST AROUND THE CORNER!!:clap:
Yep we're wrapping up testing and updating the readme as we speak. I do want to wrap up Edit Orders too so that I can release BOTH together. So it's not going to happen this weekend, but I am thinking that submitting this in 2 weeks is not out of the realm of possibility.
Here's the highlights:
- Full integration of Super Orders functionality into the into Zen Cart core. Eliminate once and for all the separate Super Orders versions of the core "cousin files". Replace super_orders.php, super_invoice.php, super_packingslip.php with Super Order enhanced versions of orders.php, invoice.php, & packingslip.php.
- Auto generate Super Orders payment records when orders a paid via PayPal
- Credit Card Auto Payment Generation Tweak:
I decided to update the class file that auto generates Super Orders payments for credit card paid orders based on Blindside's post here:
http://www.zen-cart.com/forum/showpo...&postcount=207. (just the part of this code which relates to credit payments.. PayPal auto payments are handled differently)
I liked the fact that it no longer hardcodes the credit card codes, and instead relies on the data in the Super Orders payments types table. IF a NEW credit card type is supported by Zen Cart, the only thing Super Orders users need to do is to create a corresponding Super Orders payment type (the Super Orders payment code must match the corresponding credit card as it does now for supported credit cards).. This is loads easier for all I think!!
This will help keep people -- particularly newbies -- "out of the code" just to update the module.. Having to edit module files is often where things go wrong for newbies:smile:.. - Batch Form Printing. When shopowners print multiple invoices they are presented with a new window with all the selected invoices in separate frames. Printing frames is only supported by IE and Firefox (the 2 most commonly used browsers when SO was initially released). This code still works, but is showing signs of it's age. (the 80s called.. :laugh:) Frame printing is not supported in Chrome, Safari, or Opera. Therefore, this function is to be modified so that batch invoices no longer render in frames and the selected invoice prints on its own page. Align batch invoices and packingslips so that they look/act like the single printed versions.
- http://www.zen-cart.com/forum/showpo...&postcount=275
- http://www.zen-cart.com/forum/showpo...&postcount=279
- http://www.zen-cart.com/forum/showpo...6&postcount=55
- Correct PDF packing slip to intepret and output currency and other symbols correctly. (trademarks, currency symbols, copyright, etc)
- Eliminate the need for the common_orders_functions.php file. Edit Orders and Super Orders should have their own functions files.
- Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.
Currently does not create the correct comment type. Hidden comments and no e-mail comments are not e-mailed to the customer, but they are stored and displayed in the store as if they are e-mail comments. - PDF Packing Slip now prints comments the same way comments print on the regular invoice.
- Correct balance due display on PDf packing slip
-
Re: Super Orders v3.0 Support Thread
Your to good for us Diva! Don't forget to take a rest once in a while :wink:
Looking looking forward since I'm searching for a replacement for my old PDFOC :smile:
(I know, this is way more then just batch printing ^^)
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Gerjan
Your to good for us Diva! Don't forget to take a rest once in a while :wink:
Looking looking forward since I'm searching for a replacement for my old PDFOC :smile:
(I know, this is way more then just batch printing ^^)
:laugh: You are very sweet..:hug:
Can't take full credit.. I had a GREAT helper/tester for this one.. ScriptJunkie has been NOTHING but patient and awesome!!:smile:
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Soooo excited about this new version! I wish some of the other add-ons were also being updated..... I just did a complete new clean install with v1.5 and am hesitant to re-install 'old' add-ons in case something breaks.
Trying not to be too impatient!!!! Volunteers ROCK!
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
lynrobb
Soooo excited about this new version! I wish some of the other add-ons were also being updated..... I just did a complete new clean install with v1.5 and am hesitant to re-install 'old' add-ons in case something breaks.
Trying not to be too impatient!!!! Volunteers ROCK!
Here's a link to a thread that keeps a running list of the mods which have been updated and/or test-proved to work with zc150
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Most excellent! Thanks for sharing the link.
-
Re: Super Orders v3.0 Support Thread
Just a quick question...I put up the current version to hold the client over until your newest one is released. Seems the file is missing the admin/images/icons/comment2.gif file. And the language for it didn't show up either.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
cjmarley
Just a quick question...I put up the current version to hold the client over until your newest one is released. Seems the file is missing the admin/images/icons/comment2.gif file. And the language for it didn't show up either.
If your client's store is ZC 150, the most current version won't work in that store. You need to uninstall it immediately.
If your client's store is ZC 139, then the upcoming version may not be compatible either and you'll be better off with the version you have now. I'll leave that to Diva to answer though, as to whether or not Super Orders 4 for ZC150 will be backward compatible to earlier versions of ZC. My guess is that it will not be.
Regarding missing files....are you sure you have the right mod and the right support thread? SO doesn't have an "icons" folder in admin/images, and there is no comment2.gif file in the admin/images folder.
As for the language file...are you referring to includes/languages/english/modules/payment/purchaseorder.php file? And if so...what do you mean "it didn't show up"?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
Adding to my previous post....
I don't know the specific answers to your questions, so all I can do is tell you what I would do if I wanted to make the changes you're wanting to make. Since I don't know how much you know or don't know, I have no way of knowing how much detail you need, so the above post was fairly general.
Here's specifically what I would do after making backups:
1. I already have the Firefox browser and the Firebug addon installed on my computer...so if you don't have those tools - get them. They are invaluable for this and many other similar tasks.
2. Using my FF browser, I would log in to my admin and launch an invoice and a packing slip for an order.
3. I would browse the packing slip with Firebug "on" to identify and isolate the code (which is probably a table) that determines where on the page the "Bill to" and "Ship to" info appears. This way, I would easily be able to find that same code in the admin/super_packingslip.php file.
4. I would repeat the same step with the admin/super_invoice.php file for the same reason.
5. I would then use a text editor like Notepad++ (or plain old Notepad, but ++ is easier to use) to open both admin/super_invoice.php and admin/super_packingslip.php.
6. Looking at them in Notepad++, I would use admin/super_invoice.php to guide me as to how to move the "Bill to" and "Ship to" table data around in admin/super_packingslip.php in such a way as to mimic the layout in admin/super_invoice.php
7. I would then use Notepad++ to make the necessary changes.
8. As I go about making changes, I would refresh the web page displaying the packing slip to see if my changes are happening as anticipated, and use Firebug to help me identify where/how I went wrong if things didn't work out as I had anticipated.
9. To remove the comments from the packing slip, I would do the same thing...use Firebug to isolate the code that displays the comments on the packing slip, then use a text editor to open and edit admin/super_packingslip.php by commenting out or removing that code and then refreshing my packing slip page to see if it worked as anticipated.
Sooooo....that's what I would do. And if that didn't work, I'd be looking for some help.
Hope this helps you - good luck and happy Zenning :smile:
Thank You!!!!!!
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
[FONT=Tahoma]
Like other open source projects, this support forum is manned by VOLUNTEERS (ie: unpaid folks). They give of their time here when their individual schedules permit. Usually the response is pretty quick 'round these parts, but when it’s not or your question has gone unanswered this may mean one of a few things:
[/FONT]
- [FONT=Tahoma]NO ONE has an answer to your question/issue.
(Some folks will only respond when they have something MEANINGFUL to say versus a blanket “I don’t know how to do that” kind of answer.)[/FONT] - [FONT=Tahoma]Folks are just busy and will answer if/when they can..
(family and other personal obligations, day jobs, paid jobs, etc will usually trump forum participation – this is to be expected – after all it’s unrealistic to expect that folks are sitting around this forum all day and night waiting to answer questions)[/FONT]
Thank you. I was just afraid that my question was lost.... I was not trying to be rude.
-
Re: Super Orders v3.0 Support Thread
Hello
I've had a look through the thread trying to find an answer, but haven't had any success...
What I'm wanting to do is related to the SO auto comment system -- I'd like to be able to specify the amount applied in the comments section, like one can do with the number.
This would be especially useful for any lay by/lay away orders that we receive, as the payment is not full for such an order.
Any thoughts? Or can someone direct me to a previous post addressing this please?
Thanks,
Tija
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
MortalWombat
Hello
I've had a look through the thread trying to find an answer, but haven't had any success...
What I'm wanting to do is related to the SO auto comment system -- I'd like to be able to specify the amount applied in the comments section, like one can do with the number.
This would be especially useful for any lay by/lay away orders that we receive, as the payment is not full for such an order.
Any thoughts? Or can someone direct me to a previous post addressing this please?
Thanks,
Tija
You didn't miss anything - that hasn't come up before on this thread (that I recall).
To answer your question - you would have to write that functionality into the code since it doesn't currently exist. Since I'm not a coder, I can't advise you as to how to accomplish that.
Perhaps someone else will step in here and help you out (if it's a quick and easy code addition). But if it's a complex task, more than likely you'll have to hire a developer to make that change for you.
Sorry I couldn't be of more help.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
ScriptJunkie
You didn't miss anything - that hasn't come up before on this thread (that I recall).
To answer your question - you would have to write that functionality into the code since it doesn't currently exist. Since I'm not a coder, I can't advise you as to how to accomplish that.
Perhaps someone else will step in here and help you out (if it's a quick and easy code addition). But if it's a complex task, more than likely you'll have to hire a developer to make that change for you.
Sorry I couldn't be of more help.
Well, it's good to know that it might be able to be done. Unfortunately, like you, I'm no coder, so I really don't know where to start.
If it is just a quick code addition, then it would be good if someone might be able to help.
Otherwise, I'll have to see about getting a developer at a later date.
Thanks for your help,
Tija
-
Re: Super Orders v3.0 Support Thread
I know I saw a post that said approx. two weeks for release of version compatible with 1.5. Any updates on this?
I need the module for a clients site and would be willing to test for compatibility with 1.5 as I'm a developer myself. I was going to port it on my own but I figured I'd ask first. ---> Diva ya out there.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
testuser
I know I saw a post that said approx. two weeks for release of version compatible with 1.5. Any updates on this?
I need the module for a clients site and would be willing to test for compatibility with 1.5 as I'm a developer myself. I was going to port it on my own but I figured I'd ask first. ---> Diva ya out there.
Yep.. hit me up via e-mail on my website.. and let's chat...:smile: I have one small snag that's holding up things and I could use a SKILLED set of eyes to see what it is I am missing here..:frusty:
-
Re: Super Orders v3.0 Support Thread
The Edit Orders support thread is here: http://www.zen-cart.com/showthread.p...Support-Thread
Please bookmark it and post all Edit Orders questions there in the future.
Regarding your problem: Edit Orders doesn't work with ZC150. (The same applies for Super Orders).
An update is in progress and when it's released, it will be posted on the Edit Orders support thread (and the Super Orders thread, respectively)
Recommend you click the link above, bookmark the thread, and subscribe to the thread to be notified of updates. (Recommend same for Super Orders)
Quote:
Originally Posted by
windsurfer
This no doubt is in the wrong topic but i'll be damned if i can find a support thread for Edit orders even when i do a search.
Have edit orders 3.03 installed on V1.5 and when i go into an order that was paid thru Paypal i have an option of doing a full or partial refund. I now have an order which was paid thru Paypal, the buyer doesn't have an address listed with Paypal and in the customer information box there is only a first and last name.No address at all. There is however no option to do a refund for that transaction. I know how to do that in Paypal bla bla bla and i am sure this is a bogus order that i am not going to ship but i was just wondering why there would be no option to do a refund. I have this installed on 2 websites and working great, this is the first time is see no option to do the refund so obviously it has something to do with the non address for this customer. Funny thing is that The payer status says Verified whatever that means. The ip address shows 2 different ip addresses one in Canada another in the USA california. Anybody have any idea why the refund button would not be there ?
If this is in the wrong sections i would be more than happy to post it in the proper one if i knew where it was.
Thanks
-
Re: Super Orders v3.0 Support Thread
Both Super Orders and Edit Orders now show their (respective) support threads on the page in Plugins where you download them. Although searching for "Edit Orders" does show the support thread about halfway down the page. I have moved @windsurfer's question to the appropriate forum.
-
Re: Super Orders v3.0 Support Thread
Script, i have 2 websites with V1.5 and edit orders works just great thank you.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
swguy
Both Super Orders and Edit Orders now show their (respective) support threads on the page in Plugins where you download them. Although searching for "Edit Orders" does show the support thread about halfway down the page. I have moved @windsurfer's question to the appropriate forum.
Thank you Scott :)
Quote:
Originally Posted by
windsurfer
Script, i have 2 websites with V1.5 and edit orders works just great thank you.
Please see my response on the Edit Orders support thread: http://www.zen-cart.com/showthread.p...39#post1122139
-
Re: Super Orders v3.0 Support Thread
hello and good day. i did search this thread and did not find my answer. just wondering if super orders work with google checkout. thanks :)
-
Re: Super Orders v3.0 Support Thread
I just got started with zencart and installed super orders so we can do batch printing and updates. I am running zen cart 1.5 and your latest version of super orders. So far I cant seem to get batch printing to work or batch updates. Here is what happens:
- When using the batch print of packing slips, i get a new window with all the packing slips in separate frames. If I go to print, only IE9 will print each frame as separate pages. All other browsers including chrome and firefox print them all on one page with separator bars.
- When I try to use the PDF batch print, a new window opens but nothing ever appears. It sits and spins forever.
- When trying to do batch update, i get a generic error page saying something went wrong.
Just to make sure I had installed it correctly, I used winmerge to compare all the files from the installation zip file and no differences were found. I double checked to make sure all the tables created in the sql script were there too. I dont know what else i should do to troubleshoot this. I only installed the basic super orders and none of the addons.
-
Re: Super Orders v3.0 Support Thread
Short answer.. Super Orders v3.0 not compatible with Zen Cart v1.5 (and this is clear in the downloads as it does indicated what version the add-on is compatible with). Suggest reading back a page or two in this support thread where it has been made very clear that Super Orders v3.0 is not Zen Cart v1.5 ready..
Quote:
Originally Posted by
JRodman
I just got started with zencart and installed super orders so we can do batch printing and updates. I am running zen cart 1.5 and your latest version of super orders. So far I cant seem to get batch printing to work or batch updates. Here is what happens:
- When using the batch print of packing slips, i get a new window with all the packing slips in separate frames. If I go to print, only IE9 will print each frame as separate pages. All other browsers including chrome and firefox print them all on one page with separator bars.
- When I try to use the PDF batch print, a new window opens but nothing ever appears. It sits and spins forever.
- When trying to do batch update, i get a generic error page saying something went wrong.
Just to make sure I had installed it correctly, I used winmerge to compare all the files from the installation zip file and no differences were found. I double checked to make sure all the tables created in the sql script were there too. I dont know what else i should do to troubleshoot this. I only installed the basic super orders and none of the addons.
-
Re: Super Orders v3.0 Support Thread
I cant believe I missed that. Any idea when it will be compatible? And does the non-pdf batch printing issue have anything to do with the zencart version? The page comes up just fine, I just cant get them to print on separate pages.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
JRodman
I cant believe I missed that. Any idea when it will be compatible? And does the non-pdf batch printing issue have anything to do with the zencart version? The page comes up just fine, I just cant get them to print on separate pages.
Does your browser have the option to print each frame separately? If so you can chose to have each frame printed on it's own page.
Sean
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
JRodman
I cant believe I missed that. Any idea when it will be compatible?
and a quick glance through this support thread will yield the answer to this question..
-
Re: Super Orders v3.0 Support Thread
Just a quick note, after doing some research both IE and Firefox have a option during printing to print frames individually. Chrome does not yet. Just FYI in case anyone else needs to batch print using the non-PDF version.
-
1 Attachment(s)
Re: Super Orders v3.0 Support Thread
Hi All,
I am currently struggling on displaying decimal places on Sub Total Array in Super Invoice. I am attaching a screenshot for it for reference.
Attachment 10414
I need to show Tax line and Sub totals upto 1 to 2 decimal places.
Please help me know how I can do it.
Rest all prices are correctly displaying to decimal places using Admin settings.
-
Re: Super Orders v3.0 Support Thread
Hi,
Please someone help me...I need to show totals array by 2 decimal places.
All sample invoices for others are showing by two decimal places, but mine s only limited to zero decimal place.
Please guide me how to correct it.
-
Re: Super Orders v3.0 Support Thread
I see Super Orders 3.0 is compatible with ZC ver 1.3.9 I would really like to install it on ZC version 1.5.0.
Is is also compatible with ZC version 1.5.0?
Thanks for anyone help.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
onejimb
I see Super Orders 3.0 is compatible with ZC ver 1.3.9 I would really like to install it on ZC version 1.5.0.
Is is also compatible with ZC version 1.5.0?
Thanks for anyone help.
Please search the thread.. this question has been asked and answered recently.. Thanks..
-
Re: Super Orders v3.0 Support Thread
I assume you are working with Zen Cart v1.39?? If so then what does the default invoice display???
Quote:
Originally Posted by
kapil_sb
Hi All,
I am currently struggling on displaying decimal places on Sub Total Array in Super Invoice. I am attaching a screenshot for it for reference.
Attachment 10414
I need to show Tax line and Sub totals upto 1 to 2 decimal places.
Please help me know how I can do it.
Rest all prices are correctly displaying to decimal places using Admin settings.
Quote:
Originally Posted by
kapil_sb
Hi,
Please someone help me...I need to show totals array by 2 decimal places.
All sample invoices for others are showing by two decimal places, but mine s only limited to zero decimal place.
Please guide me how to correct it.
-
Re: Super Orders v3.0 Support Thread
I am using SuperOrders 3.0.2 on ZC 1.3.9h
The shipping method details are not getting passed on to the order. Instead only the shipping description is showing. For instance, instead of showing UPS Ground, it's showing United Parcel Service (1 pkg x 26.85 lbs total).
I found this post about this happening in SuperOrders 2.0, but I looked at the code and it appears correct in the SuperOrders 3.0 version I have running. http://www.zen-cart.com/showthread.p...959#post474959
Any help would be greatly appreciated.
-
Re: Super Orders v3.0 Support Thread
This is the code I have in the section:
Code:
$contents[] = array('text' => '<br>' . TEXT_DATE_ORDER_CREATED . ' ' . zen_date_short($oInfo->date_purchased));
if (zen_not_null($oInfo->last_modified)) $contents[] = array('text' => TEXT_DATE_ORDER_LAST_MODIFIED . ' ' . zen_date_short($oInfo->last_modified));
$contents[] = array('text' => '<br>' . TEXT_INFO_PAYMENT_METHOD . ' ' . $oInfo->payment_method);
$contents[] = array('text' => TEXT_INFO_SHIPPING_METHOD . ' ' . $oInfo->shipping_method);
$contents[] = array('text' => TEXT_INFO_IP_ADDRESS . ' ' . $oInfo->ip_address);
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
abcisme
I am using SuperOrders 3.0.2 on ZC 1.3.9h
The shipping method details are not getting passed on to the order. Instead only the shipping description is showing. For instance, instead of showing UPS Ground, it's showing United Parcel Service (1 pkg x 26.85 lbs total).
I found this post about this happening in SuperOrders 2.0, but I looked at the code and it appears correct in the SuperOrders 3.0 version I have running.
http://www.zen-cart.com/showthread.p...959#post474959
Any help would be greatly appreciated.
I figured out my problem and it was not related to SuperOrders.
I had implemented this change: http://www.zen-cart.com/showthread.p...-Rate-Best-Way
Which removed the text in the parentheses.. But the text in the parentheses is what tells you which shipping option was selected in the shipping method. Ugh... So now my shipping descriptions are super long, but the info is there.
Now I would love to figure out how to show *just* the info in the parentheses instead! LOL
-
Re: Super Orders v3.0 Support Thread
Link above was truncated. Here is the link
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
abcisme
I figured out my problem and it was not related to SuperOrders.
Which was precisely the answer I was going to give you..:smile:
-
Re: Super Orders v3.0 Support Thread
I know I can edit hidden comments...
BUT How do I add the ability to edit visible comments made by the admin???
Thx.
-
Re: Super Orders v3.0 Support Thread
-
Re: Super Orders v3.0 Support Thread
Hi Diva,
I know you're busy but do you have any idea on Timescales for a v1.5 compatible version? Pretty please??
Thanks,
Lindsey
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
retro
Hi Diva,
I know you're busy but do you have any idea on Timescales for a v1.5 compatible version? Pretty please??
Thanks,
Lindsey
No.. few bugs still being worked on.. by volunteers who are generously donating their time and effort to this.. Shouldn't be much longer, but I can't give an exact timeframe.. sorry..
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Update..
Because of the ability to integrate Edit Orders with Super Orders (for those running both add-ons) I wanted to release Edit Orders and Super Orders at the same time. However there are two bugs that have held up both of these releases.
There are volunteers who are working on addressing these bugs. I have no ETA on how soon they will be able to finish the work at this time.. Hoping that it will be soon. That's the best timeframe I can give anyone about the status of this add-on. It will continue to be the answer I give when asked timeframe questions. (sorry folks..:smile:)
For those who want details on the outstanding issues here they are.
Super Orders
Summary: Batch printing invoices/packingslips not page breaking correctly in Internet Explorer, Opera, & Safari
Description: The batch print function of Super Orders is not correctly interpreting the page breaks for invoices, packingslips, and shipping labels. For invoices & packingslips, the page break should happen just above the logo for each page generated. Shipping labels should be printing 4 labels to a page. The page break functionality works correctly in Firefox & Chrome.
Edit Orders
Issue: Status change requires comment to be entered
Description: System will not save status without entering a comment. Changing the order status without entering a comment results in an error message being generated, and the updated order status is not saved to the status update table.
===========================================================
Enhancements the new version will offer..
- DONE Full integration of Super Orders functionality into the into Zen Cart core. Eliminate once and for all the separate Super Orders versions of the core "cousin files". Replace super_orders.php, super_invoice.php, & super_packingslip.php with Super Order enhanced versions of the core files orders.php, invoice.php, & packingslip.php.
- DONE Auto generate Super Orders payment records when orders a paid via PayPal
- DONE Credit Card Auto Payment Generation Tweak:
I decided to update the class file that auto generates Super Orders payments for credit card paid orders based on Blindside's post here:
http://www.zen-cart.com/forum/showpo...&postcount=207. (just the part of this code which relates to credit payments.. PayPal auto payments are handled differently)
I liked the fact that it no longer hardcodes the credit card codes, and instead relies on the data in the Super Orders payments types table. IF a NEW credit card type is supported by Zen Cart, the only thing Super Orders users need to do is to create a corresponding Super Orders payment type (the Super Orders payment code must match the corresponding credit card as it does now for supported credit cards).. This is loads easier for all I think!!
This will help keep people -- particularly newbies -- "out of the code" just to update the module.. Having to edit module files is often where things go wrong for newbies:smile:.. - Batch Form Printing. When shopowners print multiple invoices they are presented with a new window with all the selected invoices in separate frames. Printing frames is only supported by IE and Firefox (the 2 most commonly used browsers when SO was initially released). This code still works, but is showing signs of it's age. (the 80s called.. :laugh:) Frame printing is not supported in Chrome, Safari, or Opera. Therefore, this function is to be modified so that batch invoices no longer render in frames and the selected invoice prints on its own page. Align batch invoices and packingslips so that they look/act like the single printed versions.
- DONE Fixed super_report_await_pay.php - missing a "<?php" (see: http://www.zen-cart.com/forum/showpo...&postcount=275)
- DONE This "fix" should be addressed in the readme as part of the user manual and therefore will not be included in the release. http://www.zen-cart.com/forum/showpo...&postcount=279
- DONE Fixed super_data_sheet.php lines around lines 225 where Ty Package Tracker is included. Caused errors for those not running Ty Package Tracker. (see: http://www.zen-cart.com/forum/showpo...6&postcount=55)
- DONE Correct PDF packing slip to interpret and output currency and other symbols correctly. (trademarks, currency symbols, copyright, etc)
- DONE Eliminate the need for the common_orders_functions.php file. Edit Orders and Super Orders should have their own functions files.
- DONE Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.
- DONE PDF Packing Slip now prints comments the same way comments print on the regular invoice.
- DONE Correct balance due display on PDF packing slip
-
Re: Super Orders v3.0 Support Thread
Hi.
This is my 1st post regarding Super Orders v3.0.2
Im on MySQL v5.5.2 / Im trying to upload SOv3.0.2, but keep showing error as Configuration_group_id cannot be NULL.
I tried to delete my testing-sub domain, recreated new zen installation, database, username, still same. Please help me. Thank you..
-
Re: Super Orders v3.0 Support Thread
What version Zen Cart are you using?
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
staft
What version Zen Cart are you using?
Hi. Im usin Zen v1.5.0. I make it to update my SQLs ready, without errors. But I unable to see Super Orders button on ADMIN>Configurations. But I see inside MYSTORE option, is FAX number details button..
Plz advise me, why I unable to see Super Orders in my ADMIN>Configurations table..?
Thank You..
-
Re: Super Orders v3.0 Support Thread
Hi MANie. Welcome to the Zen Cart forum. What you'll see if you read back a bit in this thread is that Super Orders for Zen Cart 1.5.0 has actually not been released yet. The latest version only works up to Zen Cart 1.3.9. So you'll need to wait a bit.
-
Re: Super Orders v3.0 Support Thread
getting this error:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1
I uninstall and re-install
any clue how to fix it?
thanks
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
swguy
What you'll see if you read back a bit in this thread is that Super Orders for Zen Cart 1.5.0 has actually not been released yet. The latest version only works up to Zen Cart 1.3.9. So you'll need to wait a bit.
Wanted to highlight this..
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
Zadris
getting this error:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1
I uninstall and re-install
any clue how to fix it?
Just change 'TYPE=MyISAM' to 'Engine=MyISAM' in the .SQL file.
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Just got the word today!!! Light at the end of the tunnel is coming.. One issue down, one issue to go.. Volunteers rock!!! :smile: Still not ETA just yet, but I feel a change a comin' soon!! :laugh:
Quote:
Originally Posted by
DivaVocals
Update..
Because of the ability to integrate Edit Orders with Super Orders (for those running both add-ons) I wanted to release Edit Orders and Super Orders at the same time. However there are two bugs that have held up both of these releases.
There are volunteers who are working on addressing these bugs. I have no ETA on how soon they will be able to finish the work at this time.. Hoping that it will be soon. That's the best timeframe I can give anyone about the status of this add-on. It will continue to be the answer I give when asked timeframe questions. (sorry folks..:smile:)
For those who want details on the outstanding issues here they are.
Super Orders
Summary: Batch printing invoices/packingslips not page breaking correctly in Internet Explorer, Opera, & Safari
Description: The batch print function of Super Orders is not correctly interpreting the page breaks for invoices, packingslips, and shipping labels. For invoices & packingslips, the page break should happen just above the logo for each page generated. Shipping labels should be printing 4 labels to a page. The page break functionality works correctly in Firefox & Chrome.
Edit Orders
Issue: Status change requires comment to be entered
Description: System will not save status without entering a comment. Changing the order status without entering a comment results in an error message being generated, and the updated order status is not saved to the status update table.
===========================================================
Enhancements the new version will offer..
- DONE Full integration of Super Orders functionality into the into Zen Cart core. Eliminate once and for all the separate Super Orders versions of the core "cousin files". Replace super_orders.php, super_invoice.php, & super_packingslip.php with Super Order enhanced versions of the core files orders.php, invoice.php, & packingslip.php.
- DONE Auto generate Super Orders payment records when orders a paid via PayPal
- DONE Credit Card Auto Payment Generation Tweak:
I decided to update the class file that auto generates Super Orders payments for credit card paid orders based on Blindside's post here:
http://www.zen-cart.com/forum/showpo...&postcount=207. (just the part of this code which relates to credit payments.. PayPal auto payments are handled differently)
I liked the fact that it no longer hardcodes the credit card codes, and instead relies on the data in the Super Orders payments types table. IF a NEW credit card type is supported by Zen Cart, the only thing Super Orders users need to do is to create a corresponding Super Orders payment type (the Super Orders payment code must match the corresponding credit card as it does now for supported credit cards).. This is loads easier for all I think!!
This will help keep people -- particularly newbies -- "out of the code" just to update the module.. Having to edit module files is often where things go wrong for newbies:smile:.. - Batch Form Printing. When shopowners print multiple invoices they are presented with a new window with all the selected invoices in separate frames. Printing frames is only supported by IE and Firefox (the 2 most commonly used browsers when SO was initially released). This code still works, but is showing signs of it's age. (the 80s called.. :laugh:) Frame printing is not supported in Chrome, Safari, or Opera. Therefore, this function is to be modified so that batch invoices no longer render in frames and the selected invoice prints on its own page. Align batch invoices and packingslips so that they look/act like the single printed versions.
- DONE Fixed super_report_await_pay.php - missing a "<?php" (see: http://www.zen-cart.com/forum/showpo...&postcount=275)
- DONE This "fix" should be addressed in the readme as part of the user manual and therefore will not be included in the release. http://www.zen-cart.com/forum/showpo...&postcount=279
- DONE Fixed super_data_sheet.php lines around lines 225 where Ty Package Tracker is included. Caused errors for those not running Ty Package Tracker. (see: http://www.zen-cart.com/forum/showpo...6&postcount=55)
- DONE Correct PDF packing slip to interpret and output currency and other symbols correctly. (trademarks, currency symbols, copyright, etc)
- DONE Eliminate the need for the common_orders_functions.php file. Edit Orders and Super Orders should have their own functions files.
- DONE Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.
- DONE PDF Packing Slip now prints comments the same way comments print on the regular invoice.
- DONE Correct balance due display on PDF packing slip
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
swguy
Just change 'TYPE=MyISAM' to 'Engine=MyISAM' in the .SQL file.
Thank you!
It worked.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
I assume you are working with Zen Cart v1.39?? If so then what does the default invoice display???
Sorry for such late reply,
Yes I am working on ZC v 1.3.9
It is displaying one decimal place on default invoice also.
-
Re: Super Orders v3.0 Support Thread
That's what I thought.. then the issue is NOT Super Orders issue at all but rather some setting in Zen Cart.. I am at work right now so off the top of my head I do not know which configuration item you need to change.. Best thing I can suggest is searching the forum or the FAQs for the decimal place configuration settings in Zen Cart..
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
DivaVocals
That's what I thought.. then the issue is NOT Super Orders issue at all but rather some setting in Zen Cart.. I am at work right now so off the top of my head I do not know which configuration item you need to change.. Best thing I can suggest is searching the forum or the FAQs for the decimal place configuration settings in Zen Cart..
Thanks. I will check it.
Also whenever you can gve it a thought, please see if you can remeber. :smile:
I have set admin>configuration>mystore> Tax decimal pad to 2.
Also I have set currencies>decimal place to 2.
The prices and taxes are displaying correctly in shopping cart. Only issue is invoice.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
kapil_sb
Thanks. I will check it.
Also whenever you can gve it a thought, please see if you can remeber. :smile:
I have set admin>configuration>mystore> Tax decimal pad to 2.
Also I have set currencies>decimal place to 2.
The prices and taxes are displaying correctly in shopping cart. Only issue is invoice.
My only other suggestion is to post a question in the forum to get help on the issue it is not caused by Super Orders (demonstrated by the fact that the default invoice exhibits the exact same behavior)
-
Re: Super Orders v3.0 Support Thread
Look under Localization->Currencies->your currency and see if the number of decimal places is 2.
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Volunteers rock!!! :smile: Still no ETA just yet, but as I last reported, there is one last issue remaining.. It is getting some traction, but as always volunteers have lives outside this forum. So just know we are ALMOST there!! :laugh:
Quote:
Originally Posted by
DivaVocals
Update..
Because of the ability to integrate Edit Orders with Super Orders (for those running both add-ons) I wanted to release Edit Orders and Super Orders at the same time. However there are two bugs that have held up both of these releases.
There are volunteers who are working on addressing these bugs. I have no ETA on how soon they will be able to finish the work at this time.. Hoping that it will be soon. That's the best timeframe I can give anyone about the status of this add-on. It will continue to be the answer I give when asked timeframe questions. (sorry folks..:smile:)
For those who want details on the outstanding issues here they are.
Super Orders
Summary: Batch printing invoices/packingslips not page breaking correctly in Internet Explorer, Opera, & Safari
Description: The batch print function of Super Orders is not correctly interpreting the page breaks for invoices, packingslips, and shipping labels. For invoices & packingslips, the page break should happen just above the logo for each page generated. Shipping labels should be printing 4 labels to a page. The page break functionality works correctly in Firefox & Chrome.
Edit Orders
Issue: Status change requires comment to be entered
Description: System will not save status without entering a comment. Changing the order status without entering a comment results in an error message being generated, and the updated order status is not saved to the status update table.
===========================================================
Enhancements the new version will offer..
- DONE Full integration of Super Orders functionality into the into Zen Cart core. Eliminate once and for all the separate Super Orders versions of the core "cousin files". Replace super_orders.php, super_invoice.php, & super_packingslip.php with Super Order enhanced versions of the core files orders.php, invoice.php, & packingslip.php.
- DONE Auto generate Super Orders payment records when orders a paid via PayPal
- DONE Credit Card Auto Payment Generation Tweak:
I decided to update the class file that auto generates Super Orders payments for credit card paid orders based on Blindside's post here:
http://www.zen-cart.com/forum/showpo...&postcount=207. (just the part of this code which relates to credit payments.. PayPal auto payments are handled differently)
I liked the fact that it no longer hardcodes the credit card codes, and instead relies on the data in the Super Orders payments types table. IF a NEW credit card type is supported by Zen Cart, the only thing Super Orders users need to do is to create a corresponding Super Orders payment type (the Super Orders payment code must match the corresponding credit card as it does now for supported credit cards).. This is loads easier for all I think!!
This will help keep people -- particularly newbies -- "out of the code" just to update the module.. Having to edit module files is often where things go wrong for newbies:smile:.. - Batch Form Printing. When shopowners print multiple invoices they are presented with a new window with all the selected invoices in separate frames. Printing frames is only supported by IE and Firefox (the 2 most commonly used browsers when SO was initially released). This code still works, but is showing signs of it's age. (the 80s called.. :laugh:) Frame printing is not supported in Chrome, Safari, or Opera. Therefore, this function is to be modified so that batch invoices no longer render in frames and the selected invoice prints on its own page. Align batch invoices and packingslips so that they look/act like the single printed versions.
- DONE Fixed super_report_await_pay.php - missing a "<?php" (see: http://www.zen-cart.com/forum/showpo...&postcount=275)
- DONE This "fix" should be addressed in the readme as part of the user manual and therefore will not be included in the release. http://www.zen-cart.com/forum/showpo...&postcount=279
- DONE Fixed super_data_sheet.php lines around lines 225 where Ty Package Tracker is included. Caused errors for those not running Ty Package Tracker. (see: http://www.zen-cart.com/forum/showpo...6&postcount=55)
- DONE Correct PDF packing slip to interpret and output currency and other symbols correctly. (trademarks, currency symbols, copyright, etc)
- DONE Eliminate the need for the common_orders_functions.php file. Edit Orders and Super Orders should have their own functions files.
- DONE Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.
- DONE PDF Packing Slip now prints comments the same way comments print on the regular invoice.
- DONE Correct balance due display on PDF packing slip
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
I'm thinking this may be something that can be associated with Super Orders, I'm looking to allow the customer at checkout to split their order. Any thoughts?
Thanks,
Larry
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
bislewl
I'm thinking this may be something that can be associated with Super Orders, I'm looking to allow the customer at checkout to split their order. Any thoughts?
Thanks,
Larry
Not a feature of Super Orders. The split order feature in Super Orders allows a shopowner to split and order AFTER it's been placed..
-
Re: Super Orders v3.0 Support Thread
Hi everyone. I'm developing my own modification to SO to allow a Warehouse Location to be shown on the paperwork we use to pick the stock to facilitate speeding location of the stock. It's going well but I need to input information into TABLE_ORDERS_PRODUCTS and I can't find the appropriate php file where this happens for each order. Could anyone point me in the right direction?
Many thanks in anticipation.
Philip
-
Re: Super Orders v3.0 Support Thread
Have you tried searching in Tools-> Developers Tool Kit?
Sean
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
staft
Have you tried searching in Tools-> Developers Tool Kit?
Sean
Yes, Sean I have - it wasn't at all helpful - it's why I've come here.
Regards
Philip
-
Re: Super Orders v3.0 Support Thread
If you are successful could you post your warehouse location modifications I would be interested.
Quote:
Originally Posted by
philip56
Hi everyone. I'm developing my own modification to SO to allow a Warehouse Location to be shown on the paperwork we use to pick the stock to facilitate speeding location of the stock. It's going well but I need to input information into TABLE_ORDERS_PRODUCTS and I can't find the appropriate php file where this happens for each order. Could anyone point me in the right direction?
Many thanks in anticipation.
Philip
-
Re: Super Orders v3.0 Support Thread
I saw a post in June that said Super Orders & Edit Orders for 1.50 was going to be here soon.
Any news of the release?
-
Re: Super Orders v3.0 Support Thread
Go back a page ;) (Page 78)
-
Re: Super Orders v3.0 Support Thread
Help I can't seem to install Super Orders! I need guidance. I tried following the directions and I can see the new fax number portion but the rest isn't there. No Super Orders!
What do you need to know to help me?
it is the lastest versions
i installed zc this week from my host company (one click-not recommended but didn't understand how to do it myself yet)
added a template (learned how to edit page and files)
added edit orders (learned how to add plugins)
all working fine
added super orders but acts like it isn't there. Although I can see the fax page part.
found merge program (but don't fully understand it yet so haven't really used it just overwrote every page as it asked)
uninstalled and reinstalled super orders with some merging (didn't make a difference)
read the directions again, lots of forum pages, still no clue
That is where I am at. Let me know what you need to know.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
dairymom
Help I can't seem to install Super Orders! I need guidance. I tried following the directions and I can see the new fax number portion but the rest isn't there. No Super Orders!
What do you need to know to help me?
it is the lastest versions
i installed zc this week from my host company (one click-not recommended but didn't understand how to do it myself yet)
added a template (learned how to edit page and files)
added edit orders (learned how to add plugins)
all working fine
added super orders but acts like it isn't there. Although I can see the fax page part.
found merge program (but don't fully understand it yet so haven't really used it just overwrote every page as it asked)
uninstalled and reinstalled super orders with some merging (didn't make a difference)
read the directions again, lots of forum pages, still no clue
That is where I am at. Let me know what you need to know.
I, like many others are all in the same boat.
By "the latest version" of zencart, you mean v1.5 eh!
If correct, you have probably wasted many hours of hard work. The fine people who work tirelessly on this fantastic mod has not quite made it ready for the new version of zencart. I used it with my older zencart 1.39h it worked well, although we had to manually enter all paypal payments individually. I hope the new version will do it all automatically.
I am now using zencart 1.5 on our live store and like every else am waiting with anticipation to download the new version of SO.
I find the best advice about using the zencart modules is that if it doesn't mention the version you are using, don't bother downloading it.
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
End of the tunnel has arrived (thanks to AWESOME volunteers!!!), but I am SUPER slammed with work at the moment.. List of enhancements/bugfixes listed below for those who haven't read previous posts..
so here's what's gonna happen next..
I will package up Super Orders and try to get it posted on my site sometime this weekend.. If I do this please understand that I will only include down and dirty install instructions. I still need to update the readme before I submit it to the downloads section here.. As soon as this is submitted and made available in the downloads it will NO LONGER be available on my site..
Now with that out the way here's the BEST part of the new Super Orders.. two words ya'll
AUTO INSTALLER!!
No more external SQL files needed to install/upgrade Super Orders.. Yep that's right.. I managed to get an auto-installer WORKING with Super Orders!!! (how cool is THAT???!!!) This means if you are upgrading from a previous Super Orders install or doing a vanilla Super Orders install, the auto installer has got you covered.. Uninstall is not automated (the code to make this work is above my paygrade.. :laugh:) So to uninstall you will still need to use an external SQL file..
That said, and I will also say this in the down and dirty install instructions.. DO NOT RUN THE UNINSTALL SQL when upgrading.. Let me repeat..
DO NOT RUN THE UNINSTALL SQL when upgrading!!!!!!
You will wipe out your payment/refunds/purchase order tables.. (This is IRREVERSIBLE!!)
I will post HERE once I have the installer files up on my site.. As soon as I finish updating the readme, I'll submit to the downloads section..
Happy Friday!!!
Quote:
Originally Posted by
DivaVocals
Update..
Because of the ability to integrate Edit Orders with Super Orders (for those running both add-ons) I wanted to release Edit Orders and Super Orders at the same time. However there are two bugs that have held up both of these releases.
There are volunteers who are working on addressing these bugs. I have no ETA on how soon they will be able to finish the work at this time.. Hoping that it will be soon. That's the best timeframe I can give anyone about the status of this add-on. It will continue to be the answer I give when asked timeframe questions. (sorry folks..:smile:)
For those who want details on the outstanding issues here they are.
Super Orders -
DONE!!
Summary: Batch printing invoices/packingslips not page breaking correctly in Internet Explorer, Opera, & Safari
Description: The batch print function of Super Orders is not correctly interpreting the page breaks for invoices, packingslips, and shipping labels. For invoices & packingslips, the page break should happen just above the logo for each page generated. Shipping labels should be printing 4 labels to a page. The page break functionality works correctly in Firefox & Chrome.
Edit Orders -
DONE!!
Issue: Status change requires comment to be entered
Description: System will not save status without entering a comment. Changing the order status without entering a comment results in an error message being generated, and the updated order status is not saved to the status update table.
===========================================================
Enhancements the new version will offer..
- DONE Full integration of Super Orders functionality into the into Zen Cart core. Eliminate once and for all the separate Super Orders versions of the core "cousin files". Replace super_orders.php, super_invoice.php, & super_packingslip.php with Super Order enhanced versions of the core files orders.php, invoice.php, & packingslip.php.
- DONE Auto generate Super Orders payment records when orders a paid via PayPal
- DONE Credit Card Auto Payment Generation Tweak:
I decided to update the class file that auto generates Super Orders payments for credit card paid orders based on Blindside's post here:
http://www.zen-cart.com/forum/showpo...&postcount=207. (just the part of this code which relates to credit payments.. PayPal auto payments are handled differently)
I liked the fact that it no longer hardcodes the credit card codes, and instead relies on the data in the Super Orders payments types table. IF a NEW credit card type is supported by Zen Cart, the only thing Super Orders users need to do is to create a corresponding Super Orders payment type (the Super Orders payment code must match the corresponding credit card as it does now for supported credit cards).. This is loads easier for all I think!!
This will help keep people -- particularly newbies -- "out of the code" just to update the module.. Having to edit module files is often where things go wrong for newbies:smile:.. - Batch Form Printing. When shopowners print multiple invoices they are presented with a new window with all the selected invoices in separate frames. Printing frames is only supported by IE and Firefox (the 2 most commonly used browsers when SO was initially released). This code still works, but is showing signs of it's age. (the 80s called.. :laugh:) Frame printing is not supported in Chrome, Safari, or Opera. Therefore, this function is to be modified so that batch invoices no longer render in frames and the selected invoice prints on its own page. Align batch invoices and packingslips so that they look/act like the single printed versions.
- DONE Fixed super_report_await_pay.php - missing a "<?php" (see: http://www.zen-cart.com/forum/showpo...&postcount=275)
- DONE This "fix" should be addressed in the readme as part of the user manual and therefore will not be included in the release. http://www.zen-cart.com/forum/showpo...&postcount=279
- DONE Fixed super_data_sheet.php lines around lines 225 where Ty Package Tracker is included. Caused errors for those not running Ty Package Tracker. (see: http://www.zen-cart.com/forum/showpo...6&postcount=55)
- DONE Correct PDF packing slip to interpret and output currency and other symbols correctly. (trademarks, currency symbols, copyright, etc)
- DONE Eliminate the need for the common_orders_functions.php file. Edit Orders and Super Orders should have their own functions files.
- DONE Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.
- DONE PDF Packing Slip now prints comments the same way comments print on the regular invoice.
- DONE Correct balance due display on PDF packing slip
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
YAY! This is for people like me!!!
-
Re: Super Orders v3.0 Support Thread
I really thought I had checked all that! Ugh. Glad for the new update. I don't know how long it would have taken me to figure ti out otherwise as it was off my checklist. Thanks for the reply.
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
dairymom
I really thought I had checked all that! Ugh. Glad for the new update. I don't know how long it would have taken me to figure ti out otherwise as it was off my checklist. Thanks for the reply.
this why I always suggest that folks read through the support threads of mods they are installing.. most recent info is usually there..
In the case of Super Orders there is a fair bit of info posted regarding it's rediness for Zen Cart v1.5
-
Re: Super Orders v3.0 Support Thread
Quote:
Originally Posted by
dairymom
I really thought I had checked all that! Ugh. Glad for the new update. I don't know how long it would have taken me to figure ti out otherwise as it was off my checklist. Thanks for the reply.
this why I always suggest that folks read through the support threads of mods they are installing.. most recent info is usually there..
In the case of Super Orders there is a fair bit of info posted regarding it's rediness for Zen Cart v1.5
-
Re: Super Orders v3.0 Support Thread
Hi Dana! Thanks for the update, thank you and your 'team' very much! Looking forward to this an great that you got the auto-installer working just like with IH4.
:clap::thumbsup::hug::cheers:
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
DivaVocals
End of the tunnel has arrived (thanks to AWESOME volunteers!!!), but I am SUPER slammed with work at the moment.. List of enhancements/bugfixes listed below for those who haven't read previous posts..
so here's what's gonna happen next..
I will package up Super Orders and try to get it posted on my site sometime this weekend.. If I do this please understand that I will only include down and dirty install instructions. I still need to update the readme before I submit it to the downloads section here.. As soon as this is submitted and made available in the downloads it will NO LONGER be available on my site..
Now with that out the way here's the BEST part of the new Super Orders.. two words ya'll
AUTO INSTALLER!!
No more external SQL files needed to install/upgrade Super Orders.. Yep that's right.. I managed to get an auto-installer WORKING with Super Orders!!! (how cool is THAT???!!!) This means if you are upgrading from a previous Super Orders install or doing a vanilla Super Orders install, the auto installer has got you covered.. Uninstall is not automated (the code to make this work is above my paygrade.. :laugh:) So to uninstall you will still need to use an external SQL file..
That said, and I will also say this in the down and dirty install instructions.. DO NOT RUN THE UNINSTALL SQL when upgrading.. Let me repeat..
DO NOT RUN THE UNINSTALL SQL when upgrading!!!!!!
You will wipe out your payment/refunds/purchase order tables.. (This is IRREVERSIBLE!!)
I will post HERE once I have the installer files up on my site.. As soon as I finish updating the readme, I'll submit to the downloads section..
Happy Friday!!!
Posted on my site last night (link in my signature).. The install instructions in the readme are updated.. The only thing left to do before I submit this is to finalize the readme doc.. Except for the readme, this is the final version. If you are using Edit Orders too, look for that to be posted later today..
One caveat that is important.. If you are using Edit Orders or Ty Package Tracker with Super Orders, DO NOT upload/overwrite the Super Orders orders.php files with the orders.php file from these packages. Super Orders orders.php already has the required code for BOTH mods built in and only needs to be activated using an admin setting..
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
DivaVocals
Posted on my site last night (link in my signature).. The install instructions in the readme are updated.. The only thing left to do before I submit this is to finalize the readme doc.. Except for the readme, this is the final version. If you are using Edit Orders too, look for that to be posted later today..
One caveat that is important.. If you are using Edit Orders or Ty Package Tracker with Super Orders, DO NOT upload/overwrite the Super Orders orders.php files with the orders.php file from these packages. Super Orders orders.php already has the required code for BOTH mods built in and only needs to be activated using an admin setting..
Grrrrr.. despite extensive testing it looks like the auto-installer works for upgrades, but fails for some vanilla installs.. If anyone has downloaded and is doing a CLEAN Super Orders install I'd love it if anyone could confirm this.. I may need to modify the install package to split out installs from updates.. No biggie, but not what I wanted to do.. :blush::(
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
DivaVocals
Grrrrr.. despite extensive testing it looks like the auto-installer works for upgrades, but fails for some vanilla installs.. If anyone has downloaded and is doing a CLEAN Super Orders install I'd love it if anyone could confirm this.. I may need to modify the install package to split out installs from updates.. No biggie, but not what I wanted to do.. :blush::(
Decided not to spend a lot of time trying to get a single upgrade/new installer to work.. So just to keep things moving forward, I will simply separate the upgrade auto-installer from the new install auto-installer..
What I have done is effective, but crude. I'm pretty sure that the auto installer code could be paired down a bit.. Not gonna worry about it.. It works, and that's all that matters to me..
Gotta go workout and eat.. will update the files on my site later..
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
DivaVocals
Posted on my site last night (link in my signature).. The install instructions in the readme are updated.. The only thing left to do before I submit this is to finalize the readme doc.. Except for the readme, this is the final version. If you are using Edit Orders too, look for that to be posted later today..
One caveat that is important.. If you are using Edit Orders or Ty Package Tracker with Super Orders, DO NOT upload/overwrite the Super Orders orders.php files with the orders.php file from these packages. Super Orders orders.php already has the required code for BOTH mods built in and only needs to be activated using an admin setting..
Quote:
Originally Posted by
DivaVocals
Grrrrr.. despite extensive testing it looks like the auto-installer works for upgrades, but fails for some vanilla installs.. If anyone has downloaded and is doing a CLEAN Super Orders install I'd love it if anyone could confirm this.. I may need to modify the install package to split out installs from updates.. No biggie, but not what I wanted to do.. :blush::(
Quote:
Originally Posted by
DivaVocals
Decided not to spend a lot of time trying to get a single upgrade/new installer to work.. So just to keep things moving forward, I will simply separate the upgrade auto-installer from the new install auto-installer..
What I have done is effective, but crude. I'm pretty sure that the auto installer code could be paired down a bit.. Not gonna worry about it.. It works, and that's all that matters to me..
Gotta go workout and eat.. will update the files on my site later..
So sue me... I lied.. :laugh:
I spent some more time the last few days picking at this and I think I've FINALLY nailed down the auto-installer and now have a good version of the auto-installer working that will handle both new installs and upgrade installs..
I also now know why no one has posted any issues with the version they downloaded from my site..:laugh: Though the version on my site is a working version, it is in fact an older version of the updated Super Orders that MOSTLY works.. (my bad) The batch printing in this version only works in Firefox.
Now that I've fixed the auto-installer, I will be uploading a new version to my site later today (v4.0.2)..
So if you downloaded Super Orders v4.0.1 from my site, you do not HAVE to upgrade if you are using Firefox or do not use batch printing at all... Just understand that batch printing in v 4.0.1 will not work with Safari, Opera, Chrome or Internet Exploder.. oops I mean Internet Explorer.. So it might be in your interest if you use one of those browsers and do need batch printing to download the new version and update your install.
Again I am still working on finalizing the readme.. when that is done I will submit to the free downloads section. Once Super Orders is approved, it will no longer be available on my site. I will also be starting a NEW support thread for Super Orders v4.x. Though the codebase for v4.x is based on previous versions of Super Orders, v4.x is only compatible with Zen Cart v1.5. Thus I think this warrants a new support thread.
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
I've patiently been waiting for the release of Super Orders 4.0 for Zen Cart v1.5. Well I downloaded the final version from your website, installed it following the readme and then I wasn't able to access my login prompt. The readme mentions about changing the file names to match my existing ADMIN and TEMPLATE names. I waqsn't able to find any reference to a TEMPLATE in the downloaded fileset. Was it something I did? Please help.
0ldgeezer
-
Re: Super Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!
Quote:
Originally Posted by
0ldgeezer
The readme mentions about changing the file names to match my existing ADMIN and TEMPLATE names. I waqsn't able to find any reference to a TEMPLATE in the downloaded fileset.
It's a standard install instruction for add-ons. The instructions (as I have indicated) are DOWN & DIRTY instructions. So if there aren't any "TEMPLATE" folders, then there is nothing to do here.. You do need to make sure the admin folders match the name of your admin's admin folder..
Quote:
Originally Posted by
0ldgeezer
I wasn't able to access my login prompt.
You haven't provided enough information here.. What exactly do you mean by this?? Did you (as you should when there are errors) check the cache directory to see if there are error logs?? If there are error logs what do they say?? Is this a new install?? Is this an upgrade of an existing Super Orders installation from a converted 1.3.8 or 1.3.9 store??