/*
Theme Name: HomeLiveHD
Version: 1.0
Description: A child theme of Customizr
Template: customizr
Author: Home Live
*/
/* Your awesome customization starts here */
add_action ('after_setup_theme' , 'tc_woocommerce_fix', 30);

function tc_woocommerce_fix() {
    remove_action('woocommerce_before_main_content', 'tc_woocommerce_wrappers', 10);
    add_action('woocommerce_before_main_content', 'tc_woocommerce_wrappers_fix', 10);

    function tc_woocommerce_wrappers_fix() {
        ?>
          <div id="main-wrapper" class="<?php echo tc__f( 'tc_main_wrapper_classes' , 'container' ) ?>">

          <?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?>
          
          <div class="container" role="main">
              <div class="<?php echo tc__f( 'tc_column_content_wrapper_classes' , 'row column-content-wrapper' ) ?>">

                  <?php do_action( '__before_article_container'); ##hook of left sidebar?>
                      
                      <div id="content" class="<?php echo tc__f( '__screen_layout' , tc__f ( '__ID' ) , 'class' ) ?> article-container">
                          
                          <?php do_action ('__before_loop');##hooks the header of the list of post : archive, search... ?>
        <?php

    }
}