I got the the same issue with the content.
If you go in “settings -> Post type manager->Ultimate post type” you will notice a new a option called “Content detail” by default the value is null (or empty) but should be “[CONTENT]”. To solve your issue without modifying the source code, you just have to change the value of content detail to “[CONTENT]” instead of “”
Please Enter the default template for the content.Use the litrel [CONTENT] wherever you want to show the default content.Else use the Shortcodes for display of other fields.
if ( !function_exists( 'the_content_manager' ) ) {function the_content_manager($content)
{
global $post;
$post_type = get_post_type($post);
$xydac_cpts = get_option("xydac_cpt");
$con ="";
if(is_array($xydac_cpts))
{
foreach($xydac_cpts as $xydac_cpt)
if($xydac_cpt['name']==$post_type)
{
$con = $xydac_cpt['content_html'];
$val = preg_replace("/\[CONTENT]/", $content, $con);
return $val;
}
}
return $content;
}}
add_filter ('the_content','the_content_manager');