Woocommerce File

Hey there!
I’m looking for the.php file, which displays the Woocommerce Products.
Can somebody tell me?

Thanks!

@siul

There aren’t any.

Only WooCommerce related function can be found on woo-setup.php file which you can find in theme folder - inc. here you can preview it on Github.

These are functions that are responsible for classes to create proper layout for WooCommerce pages.

function dazzling_wrapper_start() {
  echo '<div id="content" class="site-content container">';
  echo '<div id="primary" class="content-area col-sm-12 col-md-8 '.of_get_option('site_layout').' ">';
  echo '<main id="main" class="site-main" role="main">';
}

function dazzling_wrapper_end() {
  echo '</main></div>';
}

Thank you for your answer!
I checked the woo-setup.php file, but I’m missing the <?php get_sidebar(); ?> part. I want to move the sidebar to the right.
Thanks again!

You can manage website layout via Theme Options - Main - Website Layout Options. It will also apply to WooCommerce pages.