File: /www/wwwroot/www.molinta.com/wp-content/themes/medical-store/footer.php
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Medical Store
*/
?>
<footer class="footer-side">
<div class="footer-widget">
<div class="container">
<?php
// Check if any footer sidebar is active
$medical_store_any_sidebar_active = false;
for ( $medical_store_i = 1; $medical_store_i <= 4; $medical_store_i++ ) {
if ( is_active_sidebar( "footer{$medical_store_i}-sidebar" ) ) {
$medical_store_any_sidebar_active = true;
break;
}
}
// Count active for responsive column classes
$medical_store_active_sidebars = 0;
if ( $medical_store_any_sidebar_active ) {
for ( $medical_store_i = 1; $medical_store_i <= 4; $medical_store_i++ ) {
if ( is_active_sidebar( "footer{$medical_store_i}-sidebar" ) ) {
$medical_store_active_sidebars++;
}
}
}
$medical_store_col_class = $medical_store_active_sidebars > 0 ? 'col-lg-' . (12 / $medical_store_active_sidebars) . ' col-md-6 col-sm-12' : 'col-lg-3 col-md-6 col-sm-12';
?>
<div class="row pt-2">
<?php for ( $medical_store_i = 1; $medical_store_i <= 4; $medical_store_i++ ) : ?>
<div class="footer-area <?php echo esc_attr($medical_store_col_class); ?>">
<?php if ( $medical_store_any_sidebar_active && is_active_sidebar("footer{$medical_store_i}-sidebar") ) : ?>
<?php dynamic_sidebar("footer{$medical_store_i}-sidebar"); ?>
<?php elseif ( ! $medical_store_any_sidebar_active ) : ?>
<?php if ( $medical_store_i === 1 ) : ?>
<aside role="complementary" aria-label="<?php echo esc_attr__( 'footer1', 'medical-store' ); ?>" id="Search" class="sidebar-widget">
<h4 class="title" ><?php esc_html_e( 'Search', 'medical-store' ); ?></h4>
<?php get_search_form(); ?>
</aside>
<?php elseif ( $medical_store_i === 2 ) : ?>
<aside role="complementary" aria-label="<?php echo esc_attr__( 'footer2', 'medical-store' ); ?>" id="archives" class="sidebar-widget">
<h4 class="title" ><?php esc_html_e( 'Archives', 'medical-store' ); ?></h4>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</aside>
<?php elseif ( $medical_store_i === 3 ) : ?>
<aside role="complementary" aria-label="<?php echo esc_attr__( 'footer3', 'medical-store' ); ?>" id="meta" class="sidebar-widget">
<h4 class="title"><?php esc_html_e( 'Meta', 'medical-store' ); ?></h4>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</aside>
<?php elseif ( $medical_store_i === 4 ) : ?>
<aside role="complementary" aria-label="<?php echo esc_attr__( 'footer4', 'medical-store' ); ?>" id="categories" class="sidebar-widget">
<h4 class="title" ><?php esc_html_e( 'Categories', 'medical-store' ); ?></h4>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</aside>
<?php endif; ?>
<?php endif; ?>
</div>
<?php endfor; ?>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<div class="row pt-2">
<div class="col-lg-6 col-md-6 align-self-center">
<p class="mb-0 py-3 text-center text-md-start">
<?php
if (!get_theme_mod('medical_store_footer_text') ) { ?>
<?php esc_html_e('Medical Store Theme','medical-store'); ?>
<?php } else {
echo esc_html(get_theme_mod('medical_store_footer_text'));
}
?>
<?php if ( get_theme_mod('medical_store_copyright_enable', true) == true ) : ?>
<?php
/* translators: %s: WP Elemento */
printf( esc_html__( ' By %s', 'medical-store' ), 'WP Elemento' ); ?>
<?php endif; ?>
</p>
</div>
<div class="col-lg-6 col-md-6 align-self-center text-center text-md-end">
<?php if ( get_theme_mod('medical_store_copyright_enable', true) == true ) : ?>
<a href="<?php echo esc_url(__('https://wordpress.org','medical-store') ); ?>" rel="generator"><?php /* translators: %s: WordPress */ printf( esc_html__( 'Proudly powered by %s', 'medical-store' ), 'WordPress' ); ?></a>
<?php endif; ?>
</div>
<?php if(get_theme_mod('medical_store_footer_social_icon_hide', false )== true){ ?>
<div class="row">
<div class="col-12 align-self-center py-1">
<div class="footer-links">
<?php $medical_store_settings_footer = get_theme_mod( 'medical_store_social_links_settings_footer' ); ?>
<?php if ( is_array($medical_store_settings_footer) || is_object($medical_store_settings_footer) ){ ?>
<?php foreach( $medical_store_settings_footer as $medical_store_setting_footer ) { ?>
<a href="<?php echo esc_url( $medical_store_setting_footer['link_url'] ); ?>" target="_blank">
<i class="<?php echo esc_attr( $medical_store_setting_footer['link_text'] ); ?> me-2"></i>
</a>
<?php } ?>
<?php } ?>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php if ( get_theme_mod('medical_store_scroll_enable_setting')) : ?>
<div class="scroll-up">
<a href="#tobottom"><i class="fas fa-angle-double-up"></i></a>
</div>
<?php endif; ?>
<?php if(get_theme_mod('medical_store_progress_bar', false )== true): ?>
<div id="elemento-progress-bar" class="theme-progress-bar <?php if( get_theme_mod( 'medical_store_progress_bar_position','top') == 'top') { ?> top <?php } else { ?> bottom <?php } ?>"></div>
<?php endif; ?>
<?php if(get_theme_mod('medical_store_cursor_outline', false )== true): ?>
<!-- Custom cursor -->
<div class="cursor-point-outline"></div>
<div class="cursor-point"></div>
<!-- .Custom cursor -->
<?php endif; ?>
</footer>
<?php wp_footer(); ?>
</body>
</html>