| Server IP : 103.191.208.88 / Your IP : 216.73.216.44 Web Server : Microsoft-IIS/10.0 System : Windows NT COSMIC 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_1831(willswel_) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Inetpub/vhosts/willswell.com/httpdocs/wp-content/themes/flex-multi-business/ |
Upload File : |
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package flex-multi-business
*/
get_header();
?>
<div class="box-image position-relative">
<div class="single-page-img"></div>
<div class="page-header">
<h1><?php the_title();?></h1>
<span><?php flex_multi_business_the_breadcrumb(); ?></span>
</div>
</div>
<?php
$flex_multi_business_sidebar_layout = get_theme_mod('flex_multi_business_sidebar_layout_section', 'right');
if ($flex_multi_business_sidebar_layout == 'left') {
$flex_multi_business_sidebar_layout = 'has-left-sidebar';
} elseif ($flex_multi_business_sidebar_layout == 'right') {
$flex_multi_business_sidebar_layout = 'has-right-sidebar';
} elseif ($flex_multi_business_sidebar_layout == 'no') {
$flex_multi_business_sidebar_layout = 'no-sidebar';
}
?>
<?php
if ( have_posts() ) : ?>
<!-- blog detail start-->
<div class="sp-100 bg-w">
<div class="container">
<div class="row <?php echo esc_attr($flex_multi_business_sidebar_layout); ?>">
<?php
if ( class_exists( 'WooCommerce' ) ) {
if( (is_account_page() || is_cart() || is_checkout() || is_shop()) && is_active_sidebar( 'woocommerce-widgets' )) {
echo '<div class="col-lg-8">';
}
else if(is_account_page() || is_cart() || is_checkout() || is_shop() || is_page( 'wishlist' ) ){
echo '<div class="col-lg-12">';
}
else if(!is_active_sidebar( 'woocommerce-widgets' ) && is_product_category()){
echo '<div class="col-lg-12">';
}
else if (($flex_multi_business_sidebar_layout == 'has-left-sidebar') || ($flex_multi_business_sidebar_layout == 'has-right-sidebar') ) {
echo '<div class="col-lg-8">';
}
else{
echo '<div class="col-lg-12">';
}
}
else if (($flex_multi_business_sidebar_layout == 'has-left-sidebar') || ($flex_multi_business_sidebar_layout == 'has-right-sidebar') ){
echo '<div class="col-lg-8">';
}
else{
echo '<div class="col-lg-12">';
}
?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'page' );
if ( comments_open() || '0' != get_comments_number() ) :
comments_template();
endif; ?>
<?php endwhile; ?>
</div>
<?php
if (($flex_multi_business_sidebar_layout == 'has-left-sidebar') || ($flex_multi_business_sidebar_layout == 'has-right-sidebar')) { ?>
<div class="col-lg-4">
<?php
if ( class_exists( 'WooCommerce' ) ) {
if( is_account_page() || is_cart() || is_checkout() || is_shop() || is_product_category()) {
dynamic_sidebar('woocommerce-widgets');
}
else{
get_sidebar();
}
}
else{
get_sidebar();
}
?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
<?php
get_footer();