-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebar-shop.php
32 lines (32 loc) · 1.67 KB
/
sidebar-shop.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* sidebar-shop.php
* Shop sidebar - filters
* CHANGE PLACEHOLDER ATTRIBUTES TO PRODUCT ATTRIBUTE NAMES
*/
if(! is_shop() && !is_archive()){
return;
}
?>
<aside id="secondary" class="widget-area">
<div class="widget-area-inside">
<div class="entry-content <?php entry_content_class(); ?>">
<?php the_widget( 'WC_Widget_Product_Categories', array('title' => esc_html('Category'),'count' => 1, 'hide_empty' => 1) ); ?>
</div>
</div>
<div class="widget-area-inside">
<div class="entry-content <?php entry_content_class(); ?>">
<?php the_widget( 'WC_Widget_Price_Filter', array('title' => esc_html('Price')) ); ?>
<!--<div class="widget--size widget">
<?php // the_widget( 'WC_Widget_Layered_Nav', array('title' => esc_html( 'Quality' ), 'attribute'=>'quality','display_type'=>'list', 'query_type' => 'or') ); ?>
</div>-->
<!--<?php //the_widget('WC_Widget_Layered_Nav', array('title' => esc_html( 'Gender' ), 'attribute'=>'gender','display_type'=>'dropdown', 'query_type' => 'and') ); ?>-->
<!--<?php //the_widget('WC_Widget_Layered_Nav', array('title' => esc_html( 'Size' ), 'attribute'=>'size','display_type'=>'dropdown', 'query_type' => 'and') ); ?> -->
<?php the_widget( 'WC_Widget_Layered_Nav', array( 'title' => esc_html( 'Color' ), 'attribute'=>'colour','display_type'=>'dropdown', 'query_type' => 'or') ); ?>
<!--<hr>
<?php //the_widget( 'WC_Widget_Rating_Filter', array() ); ?>-->
<?php the_widget( 'WC_Widget_Product_Tag_Cloud', array('title' => esc_html( 'Tags' )) ); ?>
</div>
</div> <!-- / widget-area -->
</aside><!-- #secondary -->
<div class="clearfix"></div>