Powered by Blogger.
Wednesday, August 22, 2012

How to remove "Powered by Kunena Forum" from Kunena 2.0

Please check the updated post here >>>

Remove Powered By Kunena
Kunena is the best forum solution for joomla. You really should make a donation before you do this.
There is a lot of method on the web on how to remove kunena credit text from the footer. But i failed most of them with latest Kunena 2.0.1 . Then i check the codes and found it on the below file

administrator/components/com_kunena/libraries/view.php

Go to line 389. You will find the following codes

final public function poweredBy() {
$credits = '<div style="text-align:center">';
$credits .= JHTML::_('kunenaforum.link', 'index.php?option=com_kunena&view=credits', JText::_('COM_KUNENA_POWEREDBY'), '', '', 'follow', array('style'=>'display: inline; visibility: visible; text-decoration: none;'));


The easiest way to remove this is to hide.  So replace <div style="text-align:center">   with <div style="text-align:center; display:none">

The credit wont be visible in your website anymore. I hope that is what you want.
Enjoy