Thanks for the info, I had actually tested that though, but maybe I just missed it.
I am now using custom code to get the content and it is working as it should.
add_filter( 'cs_dynamic_content_hs', 'hs_dynamic_content_hs', 10, 3);
function hs_dynamic_content_hs ( $result, $field, $args)
{
global $post;
switch ($field)
{
case 'post-content':
if ($post != NULL)
{
$result = get_the_content();
}
break;
}
return $result;
}
Still it would be nice to use the {{dc:post:the_content}} from you though. It would also be interesting to know why this extra <p></p>
tag is created???
The last changes I made on the page could be saved without any problems. If the problem occurs again I will create a separate ticket.