//Display See Additional Details message on products
add_action( 'woocommerce_product_meta_end', 'view_meta_message_for_single_product', 10 );
function view_meta_message_for_single_product(){
global $post;
echo '<p>To view complete product details, see Additional Information tab below.</p>';
}