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