This is a neat little mod!
I installed it and it looks handy but unfortunately we deal mostly with downloadable products, and when adding a product, it does not add the download attributes as well. Any chance of this feature being added to the mod?
Printable View
This is a neat little mod!
I installed it and it looks handy but unfortunately we deal mostly with downloadable products, and when adding a product, it does not add the download attributes as well. Any chance of this feature being added to the mod?
Hi,
Has anyone here tried this mod with Dual Pricing ? Is it compatible with dual pricing ?
Thank you in advance for the info.
Are you sure you're using 2.0? You can't add items in 2.0.. only older versions. It will be introduced later onQuote:
Originally Posted by clikchic
Like he said, there is no product editing available in this release. The only edit feature is the ability to split an order (click "edit products" from the detail page > select products to move > click "submit" button).
The original SO incorporated an old, old, old contrib called "Edit Orders," which did have the ability to add products. However that code was way outdated and broke nearly every time it was used, and so it was disabled. Some users did attempt to enable and hack it into working properly, but that kind of functionality really demands a full rewrite.
For reasons described earlier in the thread (go back a few pages) it has not been added back in (yet).
Blindside,
Quick question,
Why is it that with super orders, when i view an invoice or packing slip, it only shows the carrier they choose for shipping, it dont show the method?
like one customer wants USPS Airmail, and another wants USPS Priority. When i go to print there invoice and get it ready for my driver, the slip only says USPS, dont show the method they wanted....
same with UPS, it only shows UPS, dont show Ground, next day, or whatever method they choose...
can this be fixed, or is it a problem within my cart, or what?
thanks man, your a huge help
Benjamin
You mean the text that appears in parentheses next to the shipping method on the order total lines? SO automagically removes that block of text because, well, it's so damn ugly.
It stretches the line way out beyond the others, and because that text sits in a table, it often bumps against the margins, forcing it onto a second or even third line. For a great example of this effect, see the Zone Shipping method.
If you want to see the text, you can disable the code that strips it in the invoice and order detail pages. Look for a block of code like the following...
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'];
}
yes i need to see the text that shows there method of shipping. becuase my warehouse pulls the orders from the printer, once processed, and uses that hardcopy to finish the order and get it out the door, without the shipping method on there, they have to come back and ask our sales dept before they can ship it.
thanks man, ill try and take a look at this.
should i comment out all those lines of code?
also what files should i be looking at?
i need it to show on everything from the details page to the invoice to the packing slip..
thanks much man
Do whatcha gotta do. :smile: But I have to be honest, you are the first person to point out have a problem with this "feature," and it's been in there since the very first release.
can you tell me what it is that i have to remove in order for that to show?Quote:
Originally Posted by BlindSide
im having issues getting it to display when i remove that block of code..
thanks man.
Take out that block of code I supplied, and replace it with just the following line...
Code:$display_title = $order->totals[$i]['title'];