Re: Super Orders 2.0 - RESOLVED
Well, after having looked some more, the answer I needed was already in this thread. I'll repost it here for anyone who's first having the issue.
Issue:
SO not showing 'method' of shipping, only 'carrier' on details screen.
Per instructions from the (awesome!) BlindSide in this thread:
find, in super_orders.php:
PHP Code:
if ($order->totals[$i]['class'] == 'ot_shipping') {
$format_shipping = explode(" (", $order->totals[$i]['title'], 2);
$clean_shipping = rtrim($format_shipping[0], ":");
$display_title = $clean_shipping . ':';
}
else {
$display_title = $order->totals[$i]['title'];
} */
and replace with this:
PHP Code:
$display_title = $order->totals[$i]['title'];
For those less comfy with removing stuff, remember 1) to always backup files you're about to edit. It makes restoring so much more easily done if you, like me, have fat finger syndrome more often than not and something blows up...and 2) I don't remove code, I comment it out and enter my own textual comments as to why and when.
That having been said, this works really well and I'm very pleased.
Thank you again, BlindSide, for a tremendous addition to the already robust ZenCart system!
A true fan,
~Ray
BouncerFL
Re: Super Orders 2.0 - RESOLVED
trying to upgrade and its all a nightmare - sorry!
in the super_upgrade.php file you seem to ignore an configure files so its trying to upgrade the / store not the /new_store/ and defaulting to old file sets - which is very frustrating! and you cannot hard code any of it either
any ideas?