Single listing takes the single post template to display, so its like a post not a page. The plugin has no control over the theme’s sidebar. We are planning to create a shortcode of the single listing so that the users can use it in a page and have more control. If there is no complications, you can expect it to be added this week.
For the time being, you can hide the sidebar using CSS or copy the code below and paste it in your theme’s function.php file.
add_action( 'wp_head', 'remove_active_sidebar');
function remove_active_sidebar(){
global $post, $wp_registered_sidebars;
$current_post = $post->post_type;
if (is_single() && ('at_biz_dir' === $current_post)) {
foreach ($wp_registered_sidebars as $key => $value) {
if ('right-sidebar-listing' !== $key) {
unregister_sidebar($key);
}
}
}
}