Skip to content

Instantly share code, notes, and snippets.

@woogist
Created February 24, 2015 10:56
Show Gist options
  • Save woogist/5b541c4e98f0ff7927d8 to your computer and use it in GitHub Desktop.
Save woogist/5b541c4e98f0ff7927d8 to your computer and use it in GitHub Desktop.
Shows MSRP in the order items
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