Last active
September 10, 2018 08:01
Revisions
-
flistefliste renamed this gist
Jul 30, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ <?php $shipping_items = $order->get_items( 'shipping' ); foreach($shipping_items as $el){ $shipping_method_id = $el['method_id'] ; } ?> -
flistefliste revised this gist
Mar 24, 2015 . 1 changed file with 1 addition and 5 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,4 @@ $shipping_items = $order->get_items( 'shipping' ); foreach($shipping_items as $el){ $shipping_method_id = $el['method_id'] ; } -
flistefliste revised this gist
Nov 6, 2014 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ <?php $shipping_items = $order->get_items( 'shipping' ); -
flistefliste revised this gist
Nov 6, 2014 . 1 changed file with 7 additions and 4 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ <?php //consider $order is WC_order() object $shipping_items = $order->get_items( 'shipping' ); foreach($shipping_items as $el){ $shipping_method_id = $el['method_id'] ; } ?> -
flistefliste created this gist
Nov 6, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ //consider $order is WC_order() object $shipping_items = $order->get_items( 'shipping' ); foreach($shipping_items as $el){ $shipping_method_id = $el['method_id'] ; }