Added two hooks in the admin order data panel
This commit is contained in:
parent
81bf07913c
commit
2df37c2404
|
@ -85,6 +85,8 @@ function woocommerce_order_data_meta_box($post) {
|
|||
<p class="form-field form-field-wide"><label for="excerpt"><?php _e('Customer Note:', 'woocommerce') ?></label>
|
||||
<textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt" placeholder="<?php _e('Customer\'s notes about the order', 'woocommerce'); ?>"><?php echo $post->post_excerpt; ?></textarea></p>
|
||||
|
||||
<?php do_action('woocommerce_admin_order_data_after_order_details'); ?>
|
||||
|
||||
</div>
|
||||
<div class="order_data_right">
|
||||
<div class="order_data">
|
||||
|
@ -165,6 +167,8 @@ function woocommerce_order_data_meta_box($post) {
|
|||
endforeach;
|
||||
|
||||
echo '</div>';
|
||||
|
||||
do_action('woocommerce_admin_order_data_after_billing_address');
|
||||
?>
|
||||
</div>
|
||||
<div class="order_data order_data_alt">
|
||||
|
|
Loading…
Reference in New Issue