How to remove the "Powered by Kunena Forum" K3.0
How to remove the "Powered by Kunena Forum" K3.0
12 years 3 months ago - 7 years 11 months ago
Hi all,
The first, I think you need discuss with Kunena team about this task. After discuss you can do some steps following.
+ Step 1: Open the view.php on this path ([root]/libraries/kunena/).
+ Step 2: Go to about line 444, you'll see the following code section:
+ Step 3: Replace line 444 by the following code line.
Wow it work fine.
The first, I think you need discuss with Kunena team about this task. After discuss you can do some steps following.
+ Step 1: Open the view.php on this path ([root]/libraries/kunena/).
+ Step 2: Go to about line 444, you'll see the following code section:
Code:
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;'));
$credits .= ' <a href="http://www.kunena.org" rel="follow" target="_blank" style="display: inline; visibility: visible; text-decoration: none;">'.JText::_('COM_KUNENA').'</a>';
if ($this->ktemplate->params->get('templatebyText')) {
$credits .= ' :: <a href ="'. $this->ktemplate->params->get('templatebyLink').'" rel="follow" target="_blank" style="text-decoration: none;">' . $this->ktemplate->params->get('templatebyText') .' '. $this->ktemplate->params->get('templatebyName') .'</a>';
}
$credits .= '</div>';
echo $credits;
}
+ Step 3: Replace line 444 by the following code line.
Code:
$credits = '<div style="text-align:center; display: none;">';
...
Wow it work fine.
Hung Pham
Email: 9themestore@gmail.com
Twitter: @9themestore
Email: 9themestore@gmail.com
Twitter: @9themestore
Last edit: 7 years 11 months ago by ntstore.
Please Log in or Create an account to join the conversation.
Time to create page: 0.408 seconds