| Server IP : 77.68.64.21 / Your IP : 216.73.216.219 Web Server : Apache System : Linux hp3-wp-1011378.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2668128 ( 2112425) PHP Version : 8.1.34 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/domains/vol4/924/3261924/user/htdocs/wp-content/themes/jannah/ |
Upload File : |
<?php
/**
* The template for the sidebar containing the Shop widget area
*
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly
// Returen if the current page is full width or one column
if( ! TIELABS_HELPER::has_sidebar() ) return;
// Check if the sidebars is hidden on mobiles
if( TIELABS_HELPER::is_mobile_and_hidden( 'sidebars' )) return;
// Show the sidebar if contains Widgets
if( is_active_sidebar( 'shop-widget-area' ) ){ ?>
<aside class="sidebar tie-col-md-4 tie-col-xs-12 normal-side" aria-label="<?php esc_html_e( 'Primary Sidebar', TIELABS_TEXTDOMAIN ); ?>">
<div class="theiaStickySidebar">
<?php dynamic_sidebar( 'shop-widget-area' ); ?>
</div><!-- .theiaStickySidebar /-->
</aside><!-- .sidebar /-->
<?php
}