Changing Credits in Footer

Hello Aigars ,
for a NGO I am trying to build a child theme of Unite theme.
First of all great thanks.

Would you mind if I delete the footer (for style reasons) and mention the Unite theme by colorlib on a site?
Independent of legal situation, I prefer to respect your opinion because I am happy that you offer your great work for public use.

Best regards

Hi @pedrito,

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

You can make whatever changes you want to in the theme as all the colorlib themes are released under the license GNU General Public License v2 or later which grants you permission to do that.

You can edit the footer text from the following path of the Unite theme options

Admin Area -> Appearance -> Theme Options -> Footer

And can change the WordPress powered info displayed in the footer by editing the following code in the child theme which is added in the Unite parent theme.

add_action( 'unite_footer', 'unite_footer_info', 30 );
/**
 * function to show the footer info, copyright information
 */
function unite_footer_info() {
   $output = '<a href="https://colorlib.com/wp/unite" title="Unite Theme" target="_blank">Unite Theme</a> powered by <a href="http://wordpress.org" title="WordPress" target="_blank">WordPress</a>.';
   echo $output;
}

Please advise if you have more questions.

If you want to change anything else in the footer then overwrite and change the footer.php file in the child theme.

Best Regards,
Movin

i can’t change the footer info. please help me, thanks

Hi @samim123,

To help keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/unite-support/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.

Cheers,
Movin