-- url of the page with the problem -- :
albertatacticalrifle.com
-- HikaShop version -- : 2.5.0
-- Joomla version -- : 3.4.3
-- PHP version -- : 5.6.10
CanadaPost (CP) plugin doesn't pass to the CP server the order price. Thus the server returns shipping method prices without insurance included. CP server thinks I want to send a product without insurance (zero price).
So I modified the CP plugin to include the order price. Can you pleas include the insurance fix in the next CP plugin version?
So file:
plugins/hikashopshipping/canadapost/canadapost.php
Line about 416
After
$data['XMLpackage'] .= '<turnAroundTime> ' . $data['turnaround_time'] . ' </turnAroundTime>';
I added
$data['XMLpackage'] .= ' <itemsPrice> '.$order->total->prices[0]->price_value.' </itemsPrice> ';
Now server returns correct shipping rates.