<?php
add_shortcode('currentproduct', function(){
    if(!is_singular('product')) return;

    return get_the_title();
});