You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
4.0 KiB
96 lines
4.0 KiB
<?php
|
|
/**
|
|
* The template for displaying the footer
|
|
*
|
|
*/
|
|
|
|
if ( woodmart_get_opt( 'collapse_footer_widgets' ) ) {
|
|
woodmart_enqueue_js_script( 'footer' );
|
|
}
|
|
?>
|
|
<?php if ( woodmart_needs_footer() ): ?>
|
|
<?php if ( ! woodmart_is_woo_ajax() ): ?>
|
|
</div><!-- .main-page-wrapper -->
|
|
<?php endif ?>
|
|
</div> <!-- end row -->
|
|
</div> <!-- end container -->
|
|
<?php
|
|
$page_id = woodmart_page_ID();
|
|
$disable_prefooter = get_post_meta( $page_id, '_woodmart_prefooter_off', true );
|
|
$disable_footer_page = get_post_meta( $page_id, '_woodmart_footer_off', true );
|
|
$disable_copyrights_page = get_post_meta( $page_id, '_woodmart_copyrights_off', true );
|
|
?>
|
|
<?php if ( ! $disable_prefooter && woodmart_get_opt( 'prefooter_area' ) ): ?>
|
|
<div class="wd-prefooter<?php echo woodmart_get_old_classes( ' woodmart-prefooter' ); ?>">
|
|
<div class="container">
|
|
<?php echo do_shortcode( woodmart_get_opt( 'prefooter_area' ) ); ?>
|
|
</div>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<!-- FOOTER -->
|
|
<?php if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'footer' ) ) : ?>
|
|
|
|
|
|
|
|
|
|
<footer itemscope itemtype="http://schema.org/WPFooter" class="footer-container color-scheme-<?php echo esc_attr( woodmart_get_opt( 'footer-style' ) ); ?>">
|
|
<meta itemprop="copyrightYear" content="2021">
|
|
<meta itemprop="copyrightHolder" content="mafmasterfibre.ru">
|
|
<?php
|
|
if ( ! $disable_footer_page && woodmart_get_opt( 'disable_footer' ) ) {
|
|
get_sidebar( 'footer' );
|
|
}
|
|
?>
|
|
<?php if ( !$disable_copyrights_page && woodmart_get_opt( 'disable_copyrights' ) ): ?>
|
|
<div class="copyrights-wrapper copyrights-<?php echo esc_attr( woodmart_get_opt( 'copyrights-layout' ) ); ?>">
|
|
<div class="container">
|
|
<div class="min-footer">
|
|
<div class="col-left set-cont-mb-s reset-last-child">
|
|
<?php if ( woodmart_get_opt( 'copyrights' ) != '' ): ?>
|
|
<?php echo do_shortcode( woodmart_get_opt( 'copyrights' ) ); ?>
|
|
<?php else: ?>
|
|
<p>© <?php echo date( 'Y' ); ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>. <?php esc_html_e( 'All rights reserved', 'woodmart' ) ?></p>
|
|
<?php endif ?>
|
|
</div>
|
|
<?php if ( woodmart_get_opt( 'copyrights2' ) != '' ): ?>
|
|
<div class="col-right set-cont-mb-s reset-last-child">
|
|
<?php echo do_shortcode( woodmart_get_opt( 'copyrights2' ) ); ?>
|
|
</div>
|
|
<?php endif ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif ?>
|
|
</footer>
|
|
<?php endif ?>
|
|
<?php endif ?>
|
|
</div> <!-- end wrapper -->
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
|
|
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="wd-close-side<?php echo woodmart_get_old_classes( ' woodmart-close-side' ); ?>"></div>
|
|
<?php do_action( 'woodmart_before_wp_footer' ); ?>
|
|
<?php wp_footer(); ?>
|
|
|
|
<!-- <div style="display:none;" itemscope itemtype="http://schema.org/Organization">
|
|
<div itemprop="name">ПРОДАЖА И УСТАНОВКА ОБОРУДОВАНИЯ</div>
|
|
<link itemprop="url" href="https://mafmasterfibre.ru/">
|
|
<div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
|
|
<span itemprop="postalCode">127299</span>,
|
|
<span itemprop="addressCountry">Россия</span>,
|
|
<span itemprop="addressRegion">Московская область</span>,
|
|
<span itemprop="addressLocality">Москва</span>,
|
|
<span itemprop="streetAddress">ул. Космонавта Волкова, дом 20, офис 619, 6 этаж</span>
|
|
</div>
|
|
<div>Телефон: <a itemprop="telephone" href="tel:+74956646591">+7 (495) 664-65-91</a></div>
|
|
<div>Почта: <a itemprop="email" href="mailto:mafmaster21@gmail.com">mafmaster21@gmail.com</a></div>
|
|
<div>Факс: <a itemprop="faxNumber" href="tel:+74956646591">+7 (495) 664-65-91</a></div>
|
|
</div> -->
|
|
</body>
|
|
</html>
|
|
|