Replies: 0
Hello,
I need some help navigating how to change the default footer credit in the Karuna theme. Currently, it defaults to “Proudly powered by WordPress | Theme: Karuna by Automattic.”
However, I would like to change this to “© 2022 Famici Wine Company”
I am having trouble locating where to change this. It does not appear to be in style.css file or in the footer.php file.
The footer.php file is included below and I have tried to change the <?php get_template_part( 'components/footer/site', 'info' ); ?> line with no success, however, if my understanding is correct, that is where this info comes from.
Any help would be much appreciated.
Thanks!
<?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 Karuna
*/
?>
<?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
<div class="full-width-widget-area widget-area">
<?php dynamic_sidebar( 'sidebar-5' ); ?>
</div>
<?php endif; ?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_template_part( 'components/footer/footer', 'widgets' ); ?>
<?php get_template_part( 'components/footer/site', 'info' ); ?>
echo "© 2022 Famici Wine Company";
</footer>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>