Re: module works, but won't continue to page 2
Issue is solved, thanks to the keen eye of bitsmith2k.
I've updated the code for the download, along with a few added features, such as maximum weight.
Still working on removing the Nusoap libraries.
But it is a working module!!!
Thanks Bitsmith2k
Lux
Re: module works, but won't continue to page 2
Glad you got it sorted out! Yes, xmlentity-encoding can throw wrinkles into things sometimes. That certainly explains why the quote() results weren't able to match up with customer-selections.
Are you going to post your module to the Addons area?
Re: module works, but won't continue to page 2
Very good timing
Yes, I will be posting it. It's available for users to test right now, and I'm just finishing up some changes to it. First, removing excess code, and 2nd, removing the need for extra libraries.
Then, I will test it with a stock installation and post it to the Addons.
Thanks for the feedback of those that have tested it and notified me.
Lux
Re: module works, but won't continue to page 2
It's now June... any progress on this module? I would love to add it to my website as a shipping option.
Re: module works, but won't continue to page 2
The module as posted is working, just use the download link in my post. I haven't posted it to the add-ons yet because I still haven't removed the excess code. I also wanted some feedback from people that are using it to see that it works.
This could be you :smile:
Download it, install, try it out. It's been working on my site for many months.
If you have any problems at all, let me know.
When I get a few moments, I will clean out the unnecessary code and upload it. Sorry for the slow pace, but, as many of us here, this is not my paying job, so it gets done when it gets done.
I was also kinda expecting an update in zencart to spoil my code, since around the time I was working on it we went through all the updates with the 1.39a-h, but things seem to have settled until the 1.5 update.
You can PM me if there's any issues. and I will fix them and post changes.
Re: module works, but won't continue to page 2
Thanks for the quick reply. Just a couple questions on the setup.
What is "Enter Your Purolator Production Key"?
Would that be my Purolator Username?
I've been trying that but I get:
Purolator e-Ship
An unknown error occured with the Purolator shipping calculations.
Please Correct this information in your profile, or contact the Island Rain Natural Soap via Email.
Re: module works, but won't continue to page 2
You need to contact Purolator and set up your account with them.
https://eship.purolator.com/SITE/en/...bservices.aspx
They will give you a production key, and password. This will give you access to the eship server. That, along with your account number will let you get quotes.
Having an account with Purolator and having access to E-ship are separate. This is a good point, I will add this to the documentation so it's more clear. Thanks for your feedback. Let me know once it's working and you're happy.
Lux
Re: module works, but won't continue to page 2
Quote:
Originally Posted by
Luxifer
You need to contact Purolator and set up your account with them.
https://eship.purolator.com/SITE/en/...bservices.aspx
They will give you a production key, and password. This will give you access to the eship server. That, along with your account number will let you get quotes.
Having an account with Purolator and having access to E-ship are separate. This is a good point, I will add this to the documentation so it's more clear. Thanks for your feedback. Let me know once it's working and you're happy.
Lux
Ahhhhh ok, yah I have an account set up but didn't realize there was a difference.
Thanks.
Re: module works, but won't continue to page 2
Ok, got that set up, just waiting on a rep to confirm.
In the mean time, can I remove the text "Purolator e-Ship" from in front of the Purolator logo? If so how?
I've tried a couple of things but either nothing changed, the page wouldn't load or I got a blank line in the admin shipping module but nothing changed in the checkout area.
Re: module works, but won't continue to page 2
Alright figured it out for the moment. We'll see once Purolator confirms whatever it is they need to confirm but so far it appears to work.
To remove the text before the logo, I created a new define for the title so I could change (remove) the checkout text without changing the text for the shipping module in the admin area.
Should be noted that the define cannot be blank '' meaning nothing in between the single quotes. When I tried that the Purolator shipping option just disappeared from the checkout page. I then tried a dot '.' between the quotes and that worked. Then I tried a space ' ' and that seems to do the trick.
Here's my define:
define('MODULE_SHIPPING_PUROLATOR_TEXT_E_TITLE', ' ');
What I changed in module:
$this->quotes = array('module' => $this->etitle , 'error' => $errmsg);
}
if (zen_not_null($this->icon))
$this->quotes['icon'] = zen_image($this->icon, $this->etitle);
Not sure about that second etitle change but I'll see what happens when I can get rid of the error msg.