You mean to use (long) description instead of the short description, right? You can do that with a code snippet which you can place in your functions.php
file.
add_filter(
'the_seo_framework_fetched_description_excerpt',
function( $excerpt, $d, $args ) {
$tsf = tsf();
if ( null === $args ) {
// In the loop.
$is_product = $tsf->is_product();
} else {
// Out the loop, admin etc.
$is_product = ! $args['taxonomy'] && ! $args['pta'] && $tsf->is_product( $args['id'] );
}
if ( $is_product ?? false ) {
$product = get_post( $args['id'] ?? $tsf->get_the_real_ID() );
$product_id = $product->ID;
// Don't leak protected content.
if ( $tsf->is_protected( $product_id ) ) return $excerpt;
$old_excerpt = $excerpt;
$excerpt = $tsf->uses_non_html_page_builder( $product_id ) ? '' : $product->post_content;
if ( $excerpt ) {
// Apply half of TSF's description AI here: selectively strip content and HTML.
$excerpt = $tsf->s_excerpt_raw(
$tsf->strip_paragraph_urls( $tsf->strip_newline_urls( $excerpt ) )
);
}
$excerpt = $excerpt ?: $old_excerpt;
}
return $excerpt;
},
10,
3
);