Zen Cart Logo
Forums / Addon Admin Tools / Super Orders v4.0 Support Thread for ZC v1.5.x

Super Orders v4.0 Support Thread for ZC v1.5.x

Sticky

Views: 172,103

Results 601 to 620 of 816
21 Nov 2016, 12:12 AM
#601
three_sisters avatar

three_sisters

Zen Follower

Join Date:
Nov 2006
Location:
Indiana
Posts:
188
Plugin Contributions:
0

Super Orders v4.0 Support Thread for ZC v1.5.x

OK - so I just tried checking to see which files have been changed since v 1.5.1 (my last working ZenCart with SuperOrders installed). Basically, I think it came down to 4 core files changed since then that are also in the SuperOrders package:

  • 2_Modified_Core_Files/YOUR_ADMIN_FOLDER/orders.php
  • 2_Modified_Core_Files/YOUR_ADMIN_FOLDER/includes/languages/english/orders.php
  • 2_Modified_Core_Files/includes/classes/order.php
  • 2_Modified_Core_Files/includes/templates/YOUR_TEMPLATE/templates/tpl_account_history_info_default.php

I am NOT even close to a comfortable PHP editor/writer.... More like a PHP gambler. Try it, test it, if it works "great", if not "try again".

I began using Beyond Compare to merge the necessary edits into one of the files and I'm fairly sure I'm creating a mess. And, well, maybe I'm not even sure of that.

Can anyone advise if I'm taking on something foolish for one so inexperienced? And if so, is my only option of an updated website to forego the SuperOrders and Edit Orders packages? Kinda sad, if so.

23 Nov 2016, 1:14 PM
#602
chuckphillips avatar

chuckphillips

Zen Follower

Join Date:
Sep 2012
Location:
Upstate South Carolina
Posts:
106
Plugin Contributions:
1

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

I have Super Orders installed in a v1.55b test environment. It basically works, the only issue I have found so far is adding a PO to an order. The PO is added, but the order page does not refresh and the email is not sent. There may be other issues of course, but this is all I have found.

I used the Super Orders version from GitHub.

23 Nov 2016, 5:31 PM
#603
chuckphillips avatar

chuckphillips

Zen Follower

Join Date:
Sep 2012
Location:
Upstate South Carolina
Posts:
106
Plugin Contributions:
1

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

It appears both adding a PO and a Refund had the same issue. The 'fix' so far was to add two references to admin/includes/classes/super_order.php.

Add this line:

global $db;

to the beginning of function add_refund, approx line 462,

and to the beginning of function add_purchase_order, approx line 433.

Hope this helps someone! We have two stores to upgrade (v1.51 to v1.55b) and they both find Super Orders a very valuable plugin.

24 Nov 2016, 10:53 PM
#604
three_sisters avatar

three_sisters

Zen Follower

Join Date:
Nov 2006
Location:
Indiana
Posts:
188
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

From GitHub? Hmmm... I've always used a package from Numinix / BlindSide.

While waiting for a reply, I tried to install it as is. Figured I could resort to my backups if it failed. The order page went white. So I went back to my backups and then figured I'd have to wait for an updated version. I replace the SuperOrder files with the ZenCart files, however I forgot to remove the non-core files. Now, I am finding that Batch Status Update and Batch Form Print are available in the menu. I'm sorry to only have the stock order page, but very, very relieved that I at least have the Batches available.

Wonder why the version is working for the two of you and not me? I do have Edit Orders installed.

25 Nov 2016, 1:14 AM
#605
chuckphillips avatar

chuckphillips

Zen Follower

Join Date:
Sep 2012
Location:
Upstate South Carolina
Posts:
106
Plugin Contributions:
1

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Try the version posted on Github. It has updates.

Were using Edit Orders also.

28 Dec 2016, 8:48 AM
#606
explorer1979 avatar

explorer1979

Inactive

Join Date:
Jan 2007
Posts:
377
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

I am also try integration SO 4.0.10 BETA (GitHub) version with Edit Order 4.1.7 on ZC 1.5.5b now
Will report there it work for me or not later
But I had a working version with ZC 1.5.4 that using SO 4.0.10 BETA (GitHub) with Edit Order 4.1.4

The GutHub 4.0.10 BETA have some small bugs, but can easy to fix by read back this forum #496 (Page 50 on this forum) or you can using #496 as starting point read on, then other small bugs also can find a fix there.

Real hope the developer make the SO 4.0.10 from BETA to final version soon, this useful module haven't update real for a long time there on the Plug-In Page (Still 4.0.9 version)

6 Jan 2017, 2:18 AM
#607
three_sisters avatar

three_sisters

Zen Follower

Join Date:
Nov 2006
Location:
Indiana
Posts:
188
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

OK - I'm back to trying to figure this thing out.

After trying the suggested GitHub version I still got a white screen. After MUCH comparing and such, I finally discovered that I can copy almost the entire YOUR_ADMIN/orders.php file. I had to delete line 40 to stop getting the white screen:

$order = new order ($oID);

Would someone care to tell me why that worked? Or if not having it will cause some trouble I am not aware of? I have no idea what it was there for.

14 Jan 2017, 12:21 PM
#608
teaj avatar

teaj

New Zenner

Join Date:
Dec 2007
Location:
South, UK
Posts:
66
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Hello, I wonder if somebody can help me with a Super Orders problem...

The issue occurs using Zen v1.5.4 but not on my v1.5.1 store. I see the addon isn't listed as compitable with v1.5.4 so imagine this is the issue. All other functions seem to work fine tho.

When using the Batch Form Print function I receive a blank page when selecting the Invoices or Packing Slips radio options from the 'Which form would you like to print?' section. The Shipping Labels and PDF options still work fine.

Checking my DeBug logs I see this is due to two classes (Currencies & Orders) attempting to be delcared twice.

I've tried changing the code in super_batch_pages.php to 'Require_once' instead of just 'require' but this hasn't helped. If I remove the lines completly:

require(DIR_WS_CLASSES . 'order.php');
require(DIR_WS_CLASSES . 'currencies.php');

...the page loads but without the required order/currency information.

Hoping there might be a quick / easy fix for someone with more knowledge than me?!

Thanks for any help!

14 Jan 2017, 1:29 PM
#609
teaj avatar

teaj

New Zenner

Join Date:
Dec 2007
Location:
South, UK
Posts:
66
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Please ignore that request! I've tried on a clean install of zen 1.5.5 and it's all working ok....

24 Jan 2017, 3:46 PM
#610
teaj avatar

teaj

New Zenner

Join Date:
Dec 2007
Location:
South, UK
Posts:
66
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

teaj:

Please ignore that request! I've tried on a clean install of zen 1.5.5 and it's all working ok....

After installing the CSS/JS Loader and FEC addons, I'm now having problems with the batch form print again.

After setting criteria and searching for orders if the 'Check All' button is pressed the page is reset and the list of orders is gone. It seems to forget the criteria, it's not being included in the request / address bar as it should be.

Maybe due to some JS not loading probably now thanks to the css/js loader?

Perhaps someone knows about this? Cheers

24 Jan 2017, 4:14 PM
#611
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

teaj:

After installing the CSS/JS Loader and FEC addons, I'm now having problems with the batch form print again.

After setting criteria and searching for orders if the 'Check All' button is pressed the page is reset and the list of orders is gone. It seems to forget the criteria, it's not being included in the request / address bar as it should be.

Maybe due to some JS not loading probably now thanks to the css/js loader?

Perhaps someone knows about this? Cheers
I do not quite see how that could be related to each other, as the CSS/JS Loader and FEC addons ar in the front end, and SO is on the back end. Unless you installed the css loader on the back end?

24 Jan 2017, 4:30 PM
#612
teaj avatar

teaj

New Zenner

Join Date:
Dec 2007
Location:
South, UK
Posts:
66
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Thanks. I followed the css loader installation as normal, so yes just on the front end... I just couldn't think of any other reason why this function would stop working, no other changes were made to the back end.

If I manually check the orders I can then batch print forms no problem, but the "Check All" function is really useful when I have a lot of orders!

16 Feb 2017, 1:41 AM
#613
ideasgirl avatar

ideasgirl

Totally Zenned

Join Date:
Aug 2005
Location:
Trujillo Alto, Puerto Rico
Posts:
1,437
Plugin Contributions:
3

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

jeking:

Bug in admin??

I never noticed it before so don't know if this is new or not. When entering a multi-line comment the line breaks aren't happening correctly.

When I enter:
one
two
three

it displays as:
one\r\ntwo\r\nthree

This is with version 4.0.10 on a 1.5.4 Zen Cart (two actually)

The customer email displays correctly.
hamagawa:

I have same issues almost a year and I thought it is only happen to me.
Seem like not.

I have same issue since ever, I remember fixing it once but when the version changed I lost the fix. Did anyone fix this issue? I don't see solution posted.

18 Feb 2017, 4:51 PM
#614
three_sisters avatar

three_sisters

Zen Follower

Join Date:
Nov 2006
Location:
Indiana
Posts:
188
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Hello, I just updated my ZC site to 1.5.5d. I did a fresh install, added my template, and installed my necessary add-ons. Then I ran the update on my database. All works great.

However, when I view the packing lists in the browser, they look fine. But when they print, the images print really long and skinny. I have Image Handler installed and the small image size is set to 150x150. I am suspicious that the image on the packing slip is simply being scaled from the original image size and that the resized small image is not what is actually being used. And so, when printing, the confines of the td keep the image width an appropriate size, but the height becomes whatever it will. I have confirmed that IH is resizing images correctly on the rest of my site, so it appears this is a specific issue.

Can someone help me locate the problem? I've searched around for it on the forum and in my files and can't seem to get anywhere.

18 Feb 2017, 4:56 PM
#615
hairydog avatar

hairydog

Zen Follower

Join Date:
Sep 2006
Posts:
165
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Three Sisters:

Hello, I just updated my ZC site to 1.5.5d. I did a fresh install, added my template, and installed my necessary add-ons. Then I ran the update on my database. All works great.Sorry, I can't help with the packing list images (we have them switched off in any case) but I'd be interested to know how you got on adding Super Orders to 1.5.5d. Did you have to make any changes from the standard downloaded plugin? I was under the impression that it wasn't working yet, but if it works for you, I'll try it again.

18 Feb 2017, 5:03 PM
#616
three_sisters avatar

three_sisters

Zen Follower

Join Date:
Nov 2006
Location:
Indiana
Posts:
188
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

hairydog:

Sorry, I can't help with the packing list images (we have them switched off in any case) but I'd be interested to know how you got on adding Super Orders to 1.5.5d. Did you have to make any changes from the standard downloaded plugin? I was under the impression that it wasn't working yet, but if it works for you, I'll try it again.

Yah - took a little bit for me to get it working. I posted in #611:

After trying the suggested GitHub version I still got a white screen. After MUCH comparing and such, I finally discovered that I can copy almost the entire YOUR_ADMIN/orders.php file. I had to delete line 40 to stop getting the white screen:

$order = new order ($oID);

I'm a far cry from good at this PHP stuff, so I'm a little nervous to pass it on as a "solution"... But it worked for me and I hope it will for you, too. Would be interested to hear if it does.

18 Feb 2017, 9:47 PM
#617
hairydog avatar

hairydog

Zen Follower

Join Date:
Sep 2006
Posts:
165
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Well, your encouragement got me to try again, and sure enough, it works a treat! So why are we told it isn't ready?

18 Feb 2017, 10:12 PM
#618
three_sisters avatar

three_sisters

Zen Follower

Join Date:
Nov 2006
Location:
Indiana
Posts:
188
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

hairydog:

Well, your encouragement got me to try again, and sure enough, it works a treat! So why are we told it isn't ready?

Well, straight up, I guess it's not. Gotta delete that line... whatever it's for, I'm not sure. :) Glad to know it worked for you too.

19 Feb 2017, 11:55 AM
#619
hairydog avatar

hairydog

Zen Follower

Join Date:
Sep 2006
Posts:
165
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Three Sisters:

Well, straight up, I guess it's not. Gotta delete that line... whatever it's for, I'm not sure. :)I don't know what it is for, but here it works perfectly well with that line left in. I've only tested it a tiny bit, but so far, so good.

This is a clean install of ZC, and of course I shall want it to work on upgrades with thousands of existing orders in the database, but that fact that it works is a great encouragement.

20 Mar 2017, 7:14 AM
#620
prabu avatar

prabu

New Zenner

Join Date:
Mar 2017
Location:
India
Posts:
22
Plugin Contributions:
0

Re: Super Orders v4.0 Support Thread for ZC v1.5.x

Hi

Is this "super orders" add on is compatible with ZC 1.5.5e?