Create Manual ACF Custom Post Type Achieve Page

Hello!

I am using ACF (Advanced Custom Fields) Plugin to create a custom post type called accessories. I want to customize the parts (custom fields) displayed on the custom post type Accessories archive page. I am using a child theme.

I have created a new file archive-accessories.php here > /randi-s-adventures/wp-content/themes/wpzoom-reel-child but this is not displaying the fields I add to this file.

This file says

<?php if ( have_posts() ) : ?>
            <?php while ( have_posts() ) : the_post(); ?>

                <?php

                get_template_part( 'content', get_post_format() );
                ?>

I think I need to find a content template and make changes there? When copying and editing the content-page.php or the content-single.php from the main theme to the child theme with changes they do not display.

Please help! Thanks so much in advance for your help!!!