Rearranged woocommerce header elements into the correct order
authorLaury GvR <laury@gaslightmedia.com>
Thu, 31 May 2018 20:56:55 +0000 (16:56 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Thu, 31 May 2018 20:56:55 +0000 (16:56 -0400)
woocommerce.php

index 0977fbd..b4b32d2 100644 (file)
@@ -6,21 +6,22 @@
     and thus NOT on cart or checkout.
 
 -->
+
+
 <html class="no-js" lang="en">
     <?php get_template_part("parts/header-meta"); ?>
     <?php $index_template = true;?>
     <?php
         global $woocommerce;
     ?>
-
     <body>
-        <div class="off-canvas-wrapper">
-            <div class="off-canvas-wrapper-inner" data-off-canvas-wrapper>
-                <div class="off-canvas-content" data-off-canvas-content>
+        <div class="off-canvas-wrap" data-offcanvas>
+            <div class="inner-wrap">
+                <div id="page-wrapper">
                     <?php
+                    include "sections/top-bar.php";
                     include "sections/header.php";
                     include "sections/off-canvas.php";
-                    include "sections/top-bar.php";
                     ?>
                     <main class="page-inside">
                         <div id="content-wrapper" class="row woocommerce-wrapper">
                                     ?>
                                 </div><!-- main woo-single-product -->
                             <?php } ?>
-<!--
+        <!--
                                 <div id="woo-sidebar" class="small-12 medium-5 columns">
                                     <?php //get_sidebar(); ?>
                                 </div>
--->
+        -->
                             </div><!-- .row .content -->
                         </main>
                         <?php
                         include "sections/footer.php";
                         include "sections/copyright.php";
                         ?>
-                    <div class="js-off-canvas-exit"></div>
-                </div><!--/.off-canvas-content-->
-            </div><!--End of inner-wrap-->
-        </div><!--End of off-canvas-->
+                    </div> <!-- End page wrapper-->
+                </div> <!-- End inner wrap-->
+            <div class="js-off-canvas-exit"></div>
+        </div><!--/.off-canvas-content-->
         <?php wp_footer();?>
     </body>
 </html>