Show all shipping packages in custom template
-
I need to let customer edit their pending payment order. By default, woocommerce only allow change the payment method. So, I have created a custom template for this feature.
The problem now I encountered is I can’t get the shipping packages in the template. Here is the code that I adapted from the wc_cart_totals_shipping_html() :
$packages = WC()->shipping->get_packages(); print_r($packages); foreach ( $packages as $i => $package ) { //blah blah blah }
The print_r($packages) give me the null array. But on the checkout page, it’s working fine. Any idea why? Or, get the shipping packages by other method?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show all shipping packages in custom template’ is closed to new replies.