Код страницы php отображается на странице моего магазина woocommerce, куда я добавляю в свой page.php, что теперь это копия, переименованная в woocommerce.php
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'page' ); ?>
<?php if (ot_get_option('page-comments') === 'on') : ?>
</main><!-- #main -->
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endif;
endwhile; ?>
</div><!-- #primary -->