?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/rankinh/numerik/wp-content/themes/blackdsn/template-parts/footer/
Upload File :
Current File : /home/rankinh/numerik/wp-content/themes/blackdsn/template-parts/footer/footer-sidebar.php

<?php
$shortcode = blackdsn_doc_elementor();

$show_sidebar = $shortcode->getVal('show_sidebar', 'show');


if (is_home()) {
    $show_sidebar = get_theme_mod('home_show_sidebar', 'show');
} elseif (is_archive()) {
    $show_sidebar = get_theme_mod('archive_show_sidebar', 'show');
}

$sidebar_name = $shortcode->getVal('choose_sidebar', 'blog-sidebar-1');


if (blackdsn_is_shop())
    $sidebar_name = 'wc-sidebar-1';


if (is_active_sidebar($sidebar_name) && $show_sidebar === 'show') : ?>

    <div id="dsn_sidebar" class="dsn-button-sidebar background-theme swiper-parallax-transform heading-color"
         onclick="sidebarOptions()">
        <span><i class="fa fa-arrow-left"></i></span>
    </div>
    <div class="dsn-sidebar  ">
        <div class="close-wind" onclick="sidebarOptions()"></div>
        <div class="sidebar-single box-shadow background-section">
            <div class="sidebar-single-content">
                <?php dynamic_sidebar($sidebar_name); ?>
            </div>
        </div>
    </div>

<?php endif; ?>