File: /var/www/vfconf/wp-content/themes/event-star/woocommerce.php
<?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://codex.wordpress.org/Template_Hierarchy
*
* @package Acme Themes
* @subpackage Event Star
*/
get_header();
$event_star_customizer_all_values = event_star_get_theme_options();
$event_star_hide_front_page_header = $event_star_customizer_all_values['event-star-hide-front-page-header'];
if (
( is_front_page() && 1 != $event_star_hide_front_page_header )
|| ! is_front_page()
) {
?>
<div class="wrapper inner-main-title">
<div class="container">
<header class="entry-header init-animate">
<?php
$shop_id = get_option( 'woocommerce_shop_page_id' );
echo '<h1 class="entry-title">' . esc_html( get_the_title( $shop_id ) ) . '</h1>';
if ( 1 == $event_star_customizer_all_values['event-star-show-breadcrumb'] ) {
event_star_breadcrumbs();
}
?>
</header><!-- .entry-header -->
</div>
</div>
<?php
}
?>
<div id="content" class="site-content container clearfix">
<?php
$sidebar_layout = event_star_sidebar_selection( get_the_ID() );
if ( 'both-sidebar' == $sidebar_layout ) {
echo '<div id="primary-wrap" class="clearfix">';
}
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) :
woocommerce_content();
endif;
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar( 'left' );
get_sidebar();
if ( 'both-sidebar' == $sidebar_layout ) {
echo '</div>';
}
?>
</div><!-- #content -->
<?php
get_footer();