<?php
$tablepress_id = get_field( 'table_profile' );
if(!empty($tablepress_id)) :
?>
<div class="catalog price-block">
<div class="content">
<h3><?php _e('Прайс','Price'); ?></h3>
<?php
echo do_shortcode( '[table id="'.$tablepress_id.'"]' );
?>
</div>
</div>
<?php
endif;
?>