I’m using Blocked as the theme. I cannot post a link to the site as we are self hosted and you cannot access the site without a Citrix account.
Here is the code on the single.php page
<?php
/* Single Posts */
if (!defined(‘ABSPATH’)) die();
global $der;
get_header();
$post_type = get_post_type();
if ($post_type == ‘portfolio’ && $der->has_layout(‘portfolio_layout’)):
$der->render_layout(); // portfolio posts bulk layout
elseif ($der->has_layout(‘single_layout’)):
$der->render_layout(); // single posts bulk layout
else:
default_section_title();
$der->open_section();
default_post_content(11);
default_sidebar(5);
$der->close_section();
endif;
get_footer();
?>