Re adding navigation
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 1 Nov 2016 12:38:38 +0000 (08:38 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 1 Nov 2016 12:38:38 +0000 (08:38 -0400)
Some how this was deleted.

woocommerce.php

index 8544c23..1c727dc 100644 (file)
@@ -1,5 +1,5 @@
 <!doctype html>
-<!-- 
+<!--
     IMPORTANT!!!
     Cart and checkout are standard pages with shortcodes and will thus not get here.
     In fact, is_woocommerce() returns true if on a page which uses WooCommerce templates
@@ -8,20 +8,21 @@
 -->
 <html class="no-js" lang="en">
     <?php include "parts/header-meta.php"; ?>
-    <?php 
+    <?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>
                     <?php
-                    include "sections/header.php"; 
-                    include "sections/off-canvas.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 id="content-wrapper" class="row woocommerce-wrapper">
                             <div class="medium-3 columns show-for-medium-up shop-sidebar-wrapper">
                                 <?php include "parts/shop-sidebar.php";?>
                             </div>
                                 <div id="woo-quick-cart-totals" class="small-5 columns">
                                     <p><?php echo $woocommerce->cart->get_cart_total(); ?>
                                         for
-                                        <?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 
+                                        <?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count,
                                                 'woothemes'), $woocommerce->cart->cart_contents_count);?>
                                     </p>
                                 </div>
                                 <div id="woo-quick-checkout" class="small-4 columns right">
                                     <?php
-                                        if (is_user_logged_in()) { 
+                                        if (is_user_logged_in()) {
                                             echo '<a href="'. get_permalink(101) . '?customer-logout=true" class="button login_toggle">log out</a>';
                                         }
                                         elseif (!is_user_logged_in()) {
                             <?php } ?>
 <!--
                                 <div id="woo-sidebar" class="small-12 medium-5 columns">
-                                    <?php //get_sidebar(); ?>    
+                                    <?php //get_sidebar(); ?>
                                 </div>
 -->
                             </div><!-- .row .content -->
                         </main>
                         <?php
-                        include "sections/footer.php"; 
-                        include "sections/copyright.php";  
+                        include "sections/footer.php";
+                        include "sections/copyright.php";
                         ?>
                     <div class="js-off-canvas-exit"></div>
                 </div><!--/.off-canvas-content-->
         </div><!--End of off-canvas-->
         <?php wp_footer();?>
     </body>
-</html>
\ No newline at end of file
+</html>