No longer showing products on the front page that are private
authorLaury GvR <laury@gaslightmedia.com>
Tue, 21 Feb 2017 20:24:12 +0000 (15:24 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 21 Feb 2017 20:24:12 +0000 (15:24 -0500)
parts/shop-cats-and-products.php
sections/front-page.php

index eacdb6c..9d09c81 100644 (file)
@@ -23,6 +23,7 @@
                     )
                 ),
                 'post_type' => 'product',
+                'post_status' => 'published',
                 'orderby' => 'menu_order',
                 'order' => 'ASC'
             );
index 699f302..a1f3c3a 100644 (file)
@@ -36,6 +36,7 @@
         <div id="front-shop" class="block-column row small-up-1 medium-up-2 large-up-4" data-equalizer>
         <?php $args = array(
              'number'     => $number,
+            'post_status' => 'published',
              'orderby'    => 'menu_order',
              'order'      => 'ASC',
              'hide_empty' => $hide_empty,
@@ -72,6 +73,7 @@
                                     )
                                 ),
                                 'post_type' => 'product',
+                                'post_status' => 'published',
                                 'orderby' => 'menu_order',
                                 'order' => 'ASC'
                             );