69 lines
3.3 KiB
PHP
69 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Sidebar Shop - Top
|
|
* Archive Products page
|
|
*/
|
|
|
|
if (!defined('ABSPATH')) :
|
|
exit; // Exit if accessed directly
|
|
endif;
|
|
|
|
$type_top = !isset($type) || !$type ? '1' : $type;
|
|
$class = 'nasa-relative hidden-tag';
|
|
$class .= $type_top == '1' ? ' large-12 columns nasa-top-sidebar' : ' nasa-top-sidebar-' . $type_top;
|
|
|
|
$attributes = '';
|
|
if ($type_top == '2') :
|
|
$attributes .= ' data-columns="' . apply_filters('nasa_top_bar_2_cols', '4') . '"';
|
|
$attributes .= ' data-columns-small="' . apply_filters('nasa_top_bar_2_cols_small', '2') . '"';
|
|
$attributes .= ' data-columns-tablet="' . apply_filters('nasa_top_bar_2_cols_medium', '3') . '"';
|
|
$attributes .= ' data-switch-tablet="' . elessi_switch_tablet() . '"';
|
|
$attributes .= ' data-switch-desktop="' . elessi_switch_desktop() . '"';
|
|
endif;
|
|
|
|
$sidebar_run = 'shop-sidebar';
|
|
|
|
if (is_tax('product_cat')) :
|
|
global $wp_query;
|
|
|
|
$query_obj = $wp_query->get_queried_object();
|
|
$sidebar_cats = get_option('nasa_sidebars_cats');
|
|
|
|
if (isset($sidebar_cats[$query_obj->slug])) :
|
|
$sidebar_run = $query_obj->slug;
|
|
else :
|
|
$nasa_root_term_id = elessi_get_root_term_id();
|
|
|
|
if ($nasa_root_term_id) :
|
|
$root_term = get_term_by('term_id', $nasa_root_term_id, 'product_cat');
|
|
|
|
if ($root_term && isset($sidebar_cats[$root_term->slug])) :
|
|
$sidebar_run = $root_term->slug;
|
|
endif;
|
|
endif;
|
|
endif;
|
|
endif;
|
|
|
|
if (is_active_sidebar($sidebar_run)) : ?>
|
|
<div class="<?php echo esc_attr($class); ?>"<?php echo $attributes; ?>>
|
|
<?php if ($type_top == '1') : ?>
|
|
<span class="nasa-close-sidebar-wrap hidden-tag">
|
|
<span class="ns-sidebar-heading hidden-tag nasa-bold fs-22">
|
|
<svg width="20px" height="20px" viewBox="4 3 16 16" fill="none">
|
|
<path d="M18 5H6C5.5286 5 5.29289 5 5.14645 5.14645C5 5.29289 5 5.5286 5 6V7.96482C5 8.2268 5 8.35779 5.05916 8.46834C5.11833 8.57888 5.22732 8.65154 5.4453 8.79687L8.4688 10.8125C9.34073 11.3938 9.7767 11.6845 10.0133 12.1267C10.25 12.5688 10.25 13.0928 10.25 14.1407V19L13.75 17.25V14.1407C13.75 13.0928 13.75 12.5688 13.9867 12.1267C14.2233 11.6845 14.6593 11.3938 15.5312 10.8125L18.5547 8.79687C18.7727 8.65154 18.8817 8.57888 18.9408 8.46834C19 8.35779 19 8.2268 19 7.96482V6C19 5.5286 19 5.29289 18.8536 5.14645C18.7071 5 18.4714 5 18 5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
</svg>
|
|
<?php echo esc_html__('Filters', 'elessi-theme'); ?>
|
|
</span>
|
|
|
|
<a href="javascript:void(0);" title="<?php echo esc_attr__('Close', 'elessi-theme'); ?>" class="hidden-tag nasa-close-sidebar" rel="nofollow">
|
|
<svg class="nasa-rotate-180" width="15" height="15" viewBox="0 0 512 512" fill="currentColor"><path d="M135 512c3 0 4 0 6 0 15-4 26-21 40-33 62-61 122-122 187-183 9-9 27-24 29-33 3-14-8-23-17-32-67-66-135-131-202-198-11-9-24-27-33-29-18-4-28 8-31 21 0 0 0 2 0 2 1 1 1 6 3 10 3 8 18 20 27 28 47 47 95 93 141 139 19 18 39 36 55 55-62 64-134 129-199 193-8 9-24 21-26 32-3 18 8 24 20 28z" /></svg>
|
|
</a>
|
|
</span>
|
|
<?php endif; ?>
|
|
|
|
<?php dynamic_sidebar($sidebar_run); ?>
|
|
</div>
|
|
|
|
<?php
|
|
endif;
|