Replies: 1
I think this should be fixed 😉 Please…!
In function public function post_excerpt()
line:
$content = ( has_excerpt( get_the_ID() ) ) ? get_the_excerpt() : get_the_content();
should be:
$content = do_shortcode( ( has_excerpt( get_the_ID() ) ) ? get_the_excerpt() : get_the_content() );