On March 4, 2014 at 6:05 pm
Open up fucntions.php and add this:
// WOOCOMMERCE
function zenon_lite_open_woocommerce_content_wrappers()
{
echo '<div class="center"><div class="single_page_post"><div class="post_wrap">';
}
function zenon_lite_close_woocommerce_content_wrappers()
{
echo '</div></div></div>';
}
function zenon_lite_prepare_woocommerce_wrappers()
{
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
add_action( 'woocommerce_before_main_content', 'zenon_lite_open_woocommerce_content_wrappers', 10 );
add_action( 'woocommerce_after_main_content', 'zenon_lite_close_woocommerce_content_wrappers', 10 );
}
add_action( 'wp_head', 'zenon_lite_prepare_woocommerce_wrappers' );
before this:
//Include CSS