Skip to content

Instantly share code, notes, and snippets.

@woogist
Created February 24, 2015 11:00
Show Gist options
  • Save woogist/4b55718bfd2478decf54 to your computer and use it in GitHub Desktop.
Save woogist/4b55718bfd2478decf54 to your computer and use it in GitHub Desktop.
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>', ( $msrp ? wc_price( $msrp ) : '-' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment