How to get rid of Ellipsis on Woocommerce [Essential] Theme [closed]

Use the excerpt_more filter:

function wpse_180792_excerpt_more() {
    return '';
}

add_filter( 'excerpt_more', 'wpse_180792_excerpt_more' );