WordPress Thesis theme is a common WordPress framework today. The Thesis theme allows for some serious customizations by web designers. One of the issues with this theme is the support for Woocommerce. If you have installed Woocommerce and your product page isn’t looking right, than we have the solution for you.
To integrate Woocommerce into a custom theme you have to create a custom woocommerce.php in your theme. This will work on Thesis using the code below. Simply copy and paste the code into a new woocommerce.php page. Than upload this to the root of the Thesis theme folder.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US"> <?php echo thesis_head::build(); ?> <body class="custom woocommerce"> <?php thesis_wrap_header(); ?> <div id="content_area" class="full_width"> <div class="page"> <div id="content_box"> <div id="content" class="woocommerce"> <?php if (function_exists ('woocommerce_content')){woocommerce_content(); } ?> </div> <?php echo thesis_sidebars(); ?> </div> </div> </div> <?php thesis_wrap_footer(); ?> <!--[if lte IE 8]> <div id="ie_clear"></div> <![endif]--> </body> </html>