Hi Raul,
Thanks for using Shortcoder.
Social media sites, pull that text from HTML “metadata”.
When you view the page source, you can see the tag below.
view-source:https://threeestate.com.br/imoveis/residencia-6213/
<meta name="twitter:description" content="[sc name="detalhes_excerpt"][/sc]" />
This is added by yoast SEO and yoast SEO is NOT executing shortcodes. This is not only for shortcoder, any shortcode you insert in post excerpts it won’t work.
Solution is to check with Yoast SEO team and see if they can execute shortcodes in “opengraph” meta twitter descriptions or try pasting the code below in functions.php file of your theme.
https://stackoverflow.com/questions/73485852/wordpress-shortcode-not-rendering-in-yoast-ogtitle
add_filter( 'wpseo_opengraph_desc', 'do_shortcode' );
add_filter( 'wpseo_twitter_description', 'do_shortcode' );
Hope this helps.
Let me know how it goes.
Thanks,
Aakash