Skip to content

Instantly share code, notes, and snippets.

@justinstern
Created September 3, 2013 23:09
Show Gist options
  • Save justinstern/6430828 to your computer and use it in GitHub Desktop.
Save justinstern/6430828 to your computer and use it in GitHub Desktop.
Render the product cost on the product page for simple products
<?php
add_action( 'woocommerce_single_product_summary', 'show_product_cost', 15 );
function show_product_cost() {
global $product;
$item_cost = get_post_meta( $product->id, '_wc_cog_cost', true );
if ( '' !== $item_cost ) {
echo "<p>Price: " . woocommerce_price( $item_cost ) . "</p>";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment