Change code snippets to action hooks
-
Hello again!
I have this snippet to show total order weight (with an additional safeweight added) below order data:
<tr class="order-weight"> <th>Total weight:</th> <td> <?php $items = $this->get_order_items(); $extra_weight = 0.2; if( sizeof( $items ) > 0 ) { foreach( $items as $item ) { $weight = $extra_weight += $item['weight'] * $item['quantity']; } } echo $weight . ' kg'; ?> </td> </tr>
I’m trying to change this into an action hook for wpo_wcpdf_after_order_data, is that possible?
Cheers!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Change code snippets to action hooks’ is closed to new replies.