Hello,
I added below code in functions.php file at the bottom of the file:
+++
if ( ! function_exists( ‘krystal_footer_copyrights’ ) ) :
function krystal_footer_copyrights() {
?>
<div class=”row”>
<div class=”copyrights”>
<p><?php echo esc_html(get_theme_mod( ‘kr_copyright_text’, __(‘? Copyright 2020 . Powered by ***** . All Rights Reserved’)) ); ?><span><?php esc_html_e(‘ | Theme by ‘,’krystal’) ?>” target=”_blank”><?php esc_html_e(‘Spiraclethemes’,’krystal’) ?></span></p>
</div>
</div>
<?php
}
endif;
if ( ! function_exists( ‘krystal_action_footer_hook’ ) ) :
function krystal_action_footer_hook() {
add_action( ‘krystal_action_footer’, ‘krystal_footer_copyrights’ );
}
endif;
add_action( ‘wp’, ‘krystal_action_footer_hook’ );
+++
But still the same issue. Cannot find it on the website.
Does this needs any extra plugin to be installed. Also I am using krystal lawyer free theme so will this krystal theme code work for that too.
Thanks.