v3.0 Not Calculating Shipping Rates
-
I’m not sure if anyone is experiencing similar issues, but version 3.0 is not calculating shipping rates on my woocommerce site. Both WP & WC are updated to the current versions.
After reviewing the plugin the only key difference I see in the code that has changed significantly is the addition of the product_id parameter in printify-shipping-methods.php:
$requestParameters['skus'][$productVariation->get_sku()] = [
'sku' => $productVariation->get_sku(),
'product_id' => $productVariation->get_id(),
'parent_id' => $productVariation->get_parent_id(),
'permalink' => $productVariation->get_permalink(),
'quantity' => $variation['quantity'], ];
For now I’ll continue to use my modified version of 2.14 that was released back in September. Aside from a couple optimizations I’ve made to version 2.14 I also removed the source tree, which I believe was mistakenly left behind by the dev when publishing for production.
- You must be logged in to reply to this topic.