No loop in my incompatible page.php?
-
Since my theme is not compatible with woocommerce, I’ve duplicated page.php, but found that there is no “loop” that this website https://docs.woothemes.com/document/third-party-custom-theme-compatibility/ refers to in my page.php. My theme’s page.php looks like this:
<?php /** * @package WordPress * @subpackage Beauty & Clean * @since 1.0 */ get_header() ?> <div class="layout-<?php echo yiw_get_layout_page() ?>"> <!-- START CONTENT --> <div id="content"> <?php get_template_part( 'loop', 'page' ) ?> <?php comments_template() ?> </div> <!-- END CONTENT --> <?php get_sidebar() ?> </div> <!-- START EXTRA CONTENT --> <?php get_template_part( 'extra-content' ) ?> <!-- END EXTRA CONTENT --> <div class="line clear"></div> <?php get_footer() ?>
[Please use the code buttons when posting code]
How do I go about making woocommerce compatible, or is it simply impossible? Thanks in advance for your help!
- The topic ‘No loop in my incompatible page.php?’ is closed to new replies.