Hi @bruberries
Thank you for advice!
Following helped me:
In theme page.php template if changed code
“echo get_the_content();”
to this
—
ob_start();
the_content();
$content_output = ob_get_clean();
echo $content_output;
—
Now mailpoet shortcode is rendered fine.
Thank you!