Change The Footer Text in the Dazzling Theme

I would like to change the text which says “dazzling Theme by Colorlib Powered by WordPress” in the footer of the dazzling theme. What is the easiest way to do this?

Hi @sifoo,

I hope you are well today and thank you for your question.

You can change it from the “Footer information” theme option on the following path

Admin Area -> Appearance -> Customize -> Dazzling Options -> Footer

And by adding the following function in the functions.php file of your child theme and then edit it.

/**
 * function to show the footer info, copyright information
 */
function dazzling_footer_info() {
  global $dazzling_footer_info;
  printf( __( 'Theme by %1$s Powered by %2$s', 'dazzling' ) , '<a href="https://colorlib.com/wp/" target="_blank">Colorlib</a>', '<a href="http://wordpress.org/" target="_blank">WordPress</a>');
}

Best Regards,
Movin