Viewing 1 replies (of 1 total)
  • Thread Starter Dirtydeeds

    (@dirtydeeds)

    add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10);
    add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10);
    
    function my_theme_wrapper_start() {
      echo '<section id="main">';
    }
    
    function my_theme_wrapper_end() {
      echo '</section>';
    }

    I think this is the part I need to customize to my theme. Is it only “main” i need to change?

Viewing 1 replies (of 1 total)
  • The topic ‘WooCommerence hooks’ is closed to new replies.