This snippet allows you to display custom content above the product meta. Product meta being the SKU, categories and tags the product belongs to. You may wish to output more important meta data using this snippet (or quite literally any content you like!).
/**
* Snippet Name: WooCommerce Show Custom Content Above Product Meta
* Snippet Author: ecommercehints.com
*/
function ecommercehints_show_custom_content_above_product_meta( $array ) {
echo "Custom content here!";
};
add_action( 'woocommerce_product_meta_start', 'ecommercehints_show_custom_content_above_product_meta', 10, 1 );