krokedil / briqpay-for-woocommerce

0 stars 3 forks source link

Add support to controll what meta data is added to the order-meta-box #9

Closed mnording closed 3 years ago

mnording commented 3 years ago

example usage:

function example_callback_add_more_meta_keys( $meta_box_keys ) { $meta_box_keys[] = ["title"=>"My TItle", "value" => "MyAdditionalData"]; return $meta_box_keys; } add_filter( 'briqpay_meta_box_keys', 'example_callback_add_more_meta_keys', 10, 1 );