How to Remove Powered By Kunena 3.x Footer
This method works for Kunena 3.x and later versions. It is always recommended to give credits to the developer. Follow the steps if it is necessary for you to remove Powered By Kunena Forum Footer Link.
Related: Remove Powered By Kunena Forum Footer in K 2.0
Step #1
Open the file from your Joomla installation folder: /libraries/kunena/view.php
Step #2
Find the following code (use ctrl + F)
echo $credits;
Step #3
Change it to:
// echo $credits;
Step #4
Save the view.php file. Now, the footer should have gone!
Explanation
The code prints out forum footer. You are commenting the code line so that it becomes inactive.