/home/sylamedg/public_html/wp-content/themes/shop-toolkit/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 Shop Toolkit 
 */
$shop_toolkit_topfooter_show = get_theme_mod('shop_toolkit_topfooter_show', 1);

?>
<?php if (is_active_sidebar('footer-widget') && $shop_toolkit_topfooter_show) : ?>
	<div class="footer-top mt-5 pb-5 pt-5 bg-light">
		<div class="footer-widget">
			<div class="container">
				<div class="row">
					<?php dynamic_sidebar('footer-widget') ?>
				</div>
			</div>
		</div>
	</div>
<?php endif; ?>

<footer id="colophon" class="site-footer text-center">
		<div class="site-info finfo">
			<a href="<?php echo esc_url( 'https://wordpress.org/' ); ?>">
				<?php esc_html_e( 'Powered by WordPress', 'shop-toolkit' ); ?>
			</a>
			
				<?php
				/* translators: 1: Theme name, 2: Theme author. */
				printf( esc_html__( 'Theme: %1$s by %2$s.', 'shop-toolkit' ), 'shop-toolkit', '<a href="https://wpthemespace.com/">wp theme space</a>' );
				?>
		</div><!-- .site-info -->
	</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>

</body>

</html>