Archive Page No Sidebar [Solved]

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(); ?>

Got it working. Only certain sidebars work on Archive pages, not ones you create from the back-end.

Thanks again.

B