testing features tag box in shortcode
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 13 Jan 2016 19:02:23 +0000 (14:02 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 13 Jan 2016 19:02:23 +0000 (14:02 -0500)
views/list_categories.php
views/list_products.php
views/product_detail.php

index 05a58ca..45103cb 100644 (file)
@@ -1,6 +1,6 @@
 <?php if(!isset($_COOKIE['catView']) || $_COOKIE['catView'] == "grid"){ ?>
 <div id="categoriesGridView" class="row">
-
+<?php get_template_part('parts/sidebar-l'); ?>
 <?php
     if ( isset( $taxonomy_terms) && is_array( $taxonomy_terms ) ) :
         foreach ( $taxonomy_terms  as $term ) : ?>
index 9536dab..9e41f76 100644 (file)
@@ -5,6 +5,7 @@
        echo category_description($cat_id);
        $cat_children = get_term_children($cat_id, MICHSCI_CATEGORY_NAME);
     ?>
+        <?php get_template_part('parts/sidebar-l'); ?>
      <?php if($_COOKIE['subcat'] == "subcat"){ ?>
         <?php foreach($cat_children as $cats){
             $term = get_term($cats, MICHSCI_CATEGORY_NAME); ?>
index 1a7642c..3c3cecd 100644 (file)
@@ -29,7 +29,7 @@ $relatives = wp_get_post_terms($product->ID, 'michsci_category', $args);
     </div>
  
     <div id="relatedFiles" class='small-12 medium-4 columns'>
-        <h2> Related Files </h2>
+        <h3> Related Files </h3>
         <?php
             $key_value = get_post_custom_values('miproduct_related_products', $product->ID); 
             foreach($key_value as $key=>$value){
@@ -37,9 +37,9 @@ $relatives = wp_get_post_terms($product->ID, 'michsci_category', $args);
                 print $shortcode_output;
         }?>
          <div class="gallery ">
-          <?php echo '<a href="#glm_gallery"> Product Gallery </a>'; ?>
+          <?php echo '<h1><a href="#glm_gallery"> Product Gallery </a></h1>'; ?>
           <div id="tags">
-          <?php echo "<h2 id='tagsTitle'> Related Products </h2><br>"; 
+          <?php echo "<h3 id='tagsTitle'> Related Products </h3><br>"; 
                 $args = array(
                 "hide_empty"=>false
             );