Hello,
I just updated WooCommerce to the latest version today and it completely wrecked the individual product pages in our store. All the photos are cut out and the layout got all jumbled. Here's a link for an example: http://bloomouterwear.com/product/onward-jacket-2blac/
Here are the options that woocommerce has listed to fix the problem: http://docs.woothemes.com/document/third-party-custom-theme-compatibility/
Can someone help me find the loop in this code?
<?php
/**
* @package WordPress
* @subpackage YIW Themes
* @since 1.0
*/
get_header() ?>
<div id="primary" class="layout-<?php echo yiw_layout_page() ?>">
<div class="inner group">
<?php get_template_part('slogan') ?>
<?php get_template_part( 'accordion-slider' ) ?>
<!-- START CONTENT -->
<div id="content" class="group">
<?php if( yiw_get_option( '_show_breadcrumbs_page' ) == 'yes' ) yiw_breadcrumb(); ?>
<?php get_template_part( 'loop', 'page' ) ?>
<?php comments_template() ?>
</div>
<!-- END CONTENT -->
<!-- START SIDEBAR -->
<?php get_sidebar() ?>
<!-- END SIDEBAR -->
<!-- START EXTRA CONTENT -->
<?php get_template_part( 'extra-content' ) ?>
<!-- END EXTRA CONTENT -->
</div>
</div>
<?php get_footer() ?>