Created
February 24, 2015 10:56
-
-
Save woogist/5b541c4e98f0ff7927d8 to your computer and use it in GitHub Desktop.
Shows MSRP in the order items
This file contains hidden or 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 characters
add_action( 'woocommerce_admin_order_item_headers', 'wc_msrp_headers' ); | |
function wc_msrp_headers() { | |
?><th class="item_msrp sortable"><?php _e( 'MSRP', 'woocommerce' ); ?></th><?php | |
} | |
add_action( 'woocommerce_admin_order_item_values', 'wc_msrp_order_item_values' ); | |
function wc_msrp_order_item_values( $_product ) { | |
$msrp = get_post_meta( absint( $_product->id ), '_msrp_price', true ); | |
printf( '<td class="item_msrp">%s</td>', wc_price( $msrp ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment