Re: ozpost shipping module
Quote:
Originally Posted by
tpeck
ego.com.au shows 0 days delivery for all but the most remote areas of OZ, so where can I change the 0 to always be 1?.
Should be fixed now.... For some reason I'd commented out the line where I'd fixed it before (probably got sidetracked with phone call or sumthing).
FYI, The 0 days were being reported intead of "Overnight". My fix is/was to replace 'Overnight' with the number #1 - That way, the shipping days offset will still function.
Problem now is, I can't seem to find any locations where it *doesn't* report "Overnight" so hopefully I haven't inadvertantly broken something else.
Cheers
Rod
Re: ozpost shipping module
You beaut! That's fixed it.
I too hope you haven't inadvertently broken the overnight thingy, but overnight still registers 1 day in my feeble brain!
Re: ozpost shipping module
Quote:
Originally Posted by
tpeck
overnight still registers 1 day in my feeble brain!
Mine too!
How come no one ever offfers 'overday' shipping? :smile:
Cheers
Rod
Re: ozpost shipping module
I received notice of this change today. I go on holidays tomorrow.
As Ozpost was working correctly on my checks, and the module itself gave no alert, I had no reason to visit this thread.
Your change has put me in a very difficult position. Pay the hostage fee and lose even more money, or go with the default shipping, and just lose money.
I am already close enough to having to fold. Thanks for the module, but I will not be switching to the subscription. I'm already running at a loss, I can't add another.
The alternatives? Don't. Work.
Re: ozpost shipping module
Quote:
Originally Posted by
Dvixen
I received notice of this change today..
At least you did recieve notice. A few of the more unfortunate users who's expiry was last week didn't get any notice. As a result I suspended the automatic expirations as soon as I realised that it was probably doing more harm than good. You, and many others, have had at least a week extension until I was able to track you down via Google searches (basically this the only method I have of contacting users not yet subscribed).
I've found all but five of the currently active zencart/ozpost users (127 active @ Sept 20th 2010).
Did any of us realise that we were so few numbers?
Perhaps we should form a committee ;-)
Cheers
Rod
Re: ozpost shipping module
Hi Rod
I hope this hasn't already been covered but after 122 pages of replies its easy to overlook......Anyway just downloaded and installed 2.0.9. We use both Aus Post and Fastways for delivies currently.
We have found however that peopleget put of by shipping costs in Australia and use a practice of building in a component of the shipping cost into the product which then gives free shipping to most east coast capitals. Out business rarely sells multiple items in a single transaction. For remote areas then the shipping cost is discounted by the amount "built in" the price.
I want to use your module rather then the other Fastway shipping module due to the issues with different costs for different suburbs within a post code.....and having to maintain this database. To fit I thought of using a negative handling fee for Aus post and Fast Way Labels however when you do this it removes that option from the result. (woudl also like it to return $0 if the calculated cost via the module is less then what I put int he handling fee as a negative number).
Is this possible and am I missing a config option ?
Thanks
Stumps
Re: ozpost shipping module
Quote:
Originally Posted by
Stumpy74
I hope this hasn't already been covered
No. This is a first.
Quote:
Originally Posted by
Stumpy74
To fit I thought of using a negative handling fee for Aus post and Fast Way Labels however when you do this it removes that option from the result.
I can't think why it should... I've no reason to *deny* negative amounts.
Quote:
Originally Posted by
Stumpy74
(woudl also like it to return $0 if the calculated cost via the module is less then what I put int he handling fee as a negative number).
Is this possible and am I missing a config option ?
It should be possible (he says cautiously), and no, you haven't missed a config option.......
<a little later>
I've spotted the problem, It seems the program is making use of the handling fee values as part of a validity check...
Handy with a text editor?
load /includes/modules/shipping/ozpost.php into editor
At or near line 467 you'll see:
Code:
if ( (($quote->cost > 0) && ($handlingFee >= 0)) ) { // valid quote
Alter this line so it reads:
Code:
if ( (($quote->cost > 0) && ($handlingFee != -1)) ) { // valid quote
Save the file, then enter your negative handling fees.. use ANY value except -1
As for returning to $0 ... the line that follows the one just edited is a simple formula that adds the shipping and handling figures, so add another line after that that reads something like
if ($cost < 0 ) $cost = 0 ;
... resave the file and give it a try.
Cheers
Rod
Re: ozpost shipping module
Thats great thanks Rod. Working like a charm. Going to register for the server during the week after a bit more tinkering.......
out of interest will this mod work its way into core code or will I need to fix for each release ?
Thanks again
Stumps
Adorable Baby Cakes
www.adorablebabycakes.com.au
Re: ozpost shipping module
Quote:
Originally Posted by
Stumpy74
Thats great thanks Rod. Working like a charm.
<snip>
will this mod work its way into core code or will I need to fix for each release ?
I'll fix it in the core code, albeit, in a somewhat different manner. What I've given you is what we in the trade call a 'kludge' ... it get's the job done, but it's nothing to be proud of.
Cheers
Rod