Using a CPT and an archive-properties.php template. Sidebar isn’t showing on right side.
Archive mode is set to use system width.
If I allow sidebar on Blog, it works. I need the sidebar working on the archive-properties page. And also on the homepage.

wp-properties.php calls _index-properties.php
but beneath that call, it calls to use side_bar function.
<?php
// =============================================================================
// VIEWS/INTEGRITY/WP-INDEX.PHP
// -----------------------------------------------------------------------------
// Index page output for Integrity.
// =============================================================================
?>
<?php get_header(); ?>
<div class="x-container max width offset">
<div class="<?php x_main_content_class(); ?>" role="main">
<?php x_get_view( 'global', '_index-properties' ); ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>