Hi Bengt,
Thank you for reaching out to us. To assign a custom sidebar to your archive pages, assuming that the child theme is set up, please add the following code in your child theme’s functions.php file
// =============================================================================
// Assign sidebar to custom post archives
// =============================================================================
add_filter( 'ups_sidebar', 'add_cpt_sidebar' );
function add_cpt_sidebar($sidebar){
if ( is_archive()) {
return 'ups-sidebar-my-sidebar';
}
return $sidebar;
}
// =============================================================================
Don’t forget replace ups-sidebar-my-sidebar with the actual ID of your custom sidebar as shown below:

Hope this helps!