I don’t understand why these codes I added to the child theme give an error. Do you see any problems?
add_shortcode( ‘product_description’, ‘display_product_description’ );
function display_product_description( $atts ){
$atts = shortcode_atts( array(
‘id’ => get_the_id(),
), $atts, ‘product_description’ );
global $product;
if ( ! is_a( $product, ‘WC_Product’) )
$product = wc_get_product($atts[‘id’]);
$description = $product->get_description();
$first_sentence = strtok($description, ‘.’);
return $first_sentence . ‘.’;
}