Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created February 4, 2025 07:15
Show Gist options
  • Save braddalton/fa0b3409b595bba6cfc0fe89c4c934c6 to your computer and use it in GitHub Desktop.
Save braddalton/fa0b3409b595bba6cfc0fe89c4c934c6 to your computer and use it in GitHub Desktop.
add_action( 'woocommerce_single_product_summary', function() {
global $product;
$gtin = get_post_meta( $product->get_id(), '_global_unique_id', true );
if ( $gtin ) {
echo '<p class="product-gtin">GTIN: ' . esc_html( $gtin ) . '</p>';
}
}, 25 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment