How to dublicate WC Product title to shortdescription field? [closed]

Use the below action in your functions.php in Current theme for duplicate Product title in Short description field.

<?php
add_action( 'publish_product', function ( $post_id ) {
    global $wpdb;

    $wpdb->update(
        'wp_posts',
        array(
            'post_excerpt' => get_the_title( $post_id ),
        ),
        array( 'ID' => $post_id )
    );
}, 10, 2 );