How to add option to woo commerce edit order page?

ε祈祈猫儿з 提交于 2019-12-23 18:43:18

问题


How to add another option here like order actions, order totals. I know how to create option page but not how to edit woocommerce options . Is there any way ?


回答1:


Its really simple to customize the order and coupons in woocommerce because they are just another custom post type. You can use any functionality of a custom post type in there. You only need to keep in mind that the post type of Orders is shop_order and of Coupons is shop_coupon.

If you want to add some custom option inside the order editor page of woocommerce then use the following code to add a new meta box inside that post type.-

add_action('add_meta_boxes',function(){
    add_meta_box('custom_order_option', 'Custom Order Option', 'custom_order_option_cb','shop_order');
});
function custom_order_option_cb($post){
    // your code goes here...
}

For further details visit the codex here.



来源:https://stackoverflow.com/questions/19409956/how-to-add-option-to-woo-commerce-edit-order-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!