Page 2 of 2

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Sun Sep 22, 2013 3:59 pm
by dejh
Thanks too.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Sat Sep 28, 2013 12:14 am
by idemsisvoje
If anyone prefers pure CSS solutions, here's one

Code: Select all

div#Kunena {
    margin: 0 0 -80px;
    position: relative;
    z-index: 3;
}

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Thu Oct 03, 2013 9:32 am
by PlamenStoyanov
Another css solution:

Code: Select all

div#Kunena + div {
    display: none;
}

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Wed Nov 06, 2013 5:19 am
by shadowdancer36
Where would this css be placed?

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Wed Nov 06, 2013 9:22 am
by idemsisvoje
shadowdancer36 wrote:Where would this css be placed?
The CSS should be inserted into the stylesheet of your current template. Look into /templates/your_template_name/css/template.css or any other .css file that is being loaded.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Fri Nov 08, 2013 10:28 pm
by DarKMaSk
here's how to remove Powered by Kunena 3.0:-



1- Go to /public_html/libraries/kunena/view.php

2 - Find it in the line 86 :


if ($this->config->get('credits', 1)) $this->poweredBy();


change it to


// if ($this->config->get('credits', 1)) $this->poweredBy();
That's all folks. I have done it by myself. But, I did it not to ignore the effort of the people who contributed to Kunena, but for some personal matters.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Fri Dec 13, 2013 11:56 am
by josazee
@DarKMaSk. It works thanks

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 4:39 am
by nwidesigns
Comment Redacted!

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 4:20 pm
by kenmcd
nwidesigns wrote:The CSS method is the only right way to do this. Since they keep moving it around creating a cat and mouse game of it, unless they change the code it will work and you can update without having to do it over again. If they change the code just change accordingly...

div#Kunena + div {
display: none;
}
That just hides the link.
The "right way" is to delete the link.

 

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 5:20 pm
by nwidesigns
kenmcd wrote:
nwidesigns wrote:The CSS method is the only right way to do this. Since they keep moving it around creating a cat and mouse game of it, unless they change the code it will work and you can update without having to do it over again. If they change the code just change accordingly...

div#Kunena + div {
display: none;
}
That just hides the link.
The "right way" is to delete the link.

 
True, but really is that not the desired result in the end? The same effect is reached by hiding it vs removing it. The difference for me is I don't have to go back and find it every time I update the extension and even if they change the way it displays it is a simple matter of changing the CSS.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 6:09 pm
by kenmcd
nwidesigns wrote:...
True, but really is that not the desired result in the end? The same effect is reached by hiding it vs removing it
...
Maybe that is the desired result for you.
Seems like a head-in-the-sand approach to me.

The majority of users do not want unrelated links on their websites ... for the obvious reasons.
- SEO effects (dilution)
- user confusion
- usability problems
- lower perceived quality

There should be no links on any website which were not put there for a specific reason.
Confusing, SEO sapping, useless nag links to not belong on any professional website.

It is relatively easy to remove the link, or use a plug-in to delete it for you.
Such as:
- Redaction Utility (P)
- ReReplacer (C)(P)

Hiding nag or spam links with CSS is just lazy and ignorant.
If you want to do it on your websites - fine.
Just do not tell others this is a smart thing to do.

 

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 7:42 pm
by nwidesigns
Thanks kenmcd, yes I do eat a lot of sand and I agree the link should be removed, I will redact my comment.

Thanks for the extension links, I was not aware these existed but will be using them from now on. I do find it irritating that these developers demand a link back with no option to remove it. Free or not it is not doing the user any good when a link is irrelevant to their site and in effect is hurting them.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 8:41 pm
by kenmcd
nwidesigns wrote:Thanks kenmcd, yes I do eat a lot of sand and I agree the link should be removed, I will redact my comment.
I feel it a bit over the top on your part however to assume I am lazy and ignorant and shows your arrogance which is not indicative of who I would consider a champion of anything!
I am the always receptive of criticism but I did not deserve that comment, so kindly shove it where the sun don't shine!
Glad you have seen the light.
Sorry if you were offended.
Perhaps after enduring years of similar less-than-completely-open-and-honest "just hide it" posts made by members of various extensions' sycophant clubs I am a bit insensitive.
nwidesigns wrote:Thanks for the extension links, I was not aware these existed but will be using them from now on.
I do find it irritating that these developers demand a link back with no option to remove it.
Free or not it is not doing the user any good when a link is irrelevant to their site and in effect is hurting them.
Like the Joomla generator tag, sometimes the only explanation for these type of links appears to be ego.

 

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Jul 22, 2014 9:58 pm
by nwidesigns
I see your point ken and I totally agree with it. I get so irritated with those that know nothing thinking they know everything that it is maddening. In no way was I trying to pass off as one of those morons. I truly do thank you for your time and expertise, it is always well received to get the straight answers.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Thu Oct 02, 2014 5:22 am
by hass71
it's no longer on this path
where can i find the view.php file to change in the latest version?

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Thu Oct 02, 2014 2:32 pm
by nwidesigns
Try this...

ROOT>Libraries>Kunena>view.php
http://www.mysysadmintips.com/other/web ... edit-links

Line 86:

Change this:
if ($this->config->get('credits', 1)) $this->poweredBy();

To This:
if ($this->config->get('credits', 0)) $this->poweredBy();

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Tue Oct 07, 2014 1:13 pm
by hass71
thank you
it worked

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Sat Jul 02, 2016 5:50 am
by wizarddesign
HWI wrote:
mircomgroup wrote: I think I found a better method. You can update the kunenu_configuration table - add a credits = 0 parameter and it will no longer show the item. That way you don't have to hack a component file.

Code: Select all

{"credits":"0",
"board_title":"YOUR FORUM NAME",
"email":"",
"board_offline":"0"

... etc etc


This IS what you want to do - this works and you do not have to touch any files.

Thou you will need access to your database through for instance phpmyadmin to edit that kunenu_configuration table to insert the "credits":"0", parameter.

Thanks! to mircomgroup for this excellent tip (see post above)
even this didn't work

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Sat Jul 02, 2016 6:33 am
by sozzled
This topic is so old, it's worthless! K 2.0 has not been the "latest version" for over two years.

Re: Remove Powered by Kunena Forum (Kunena 2.0)

Posted: Sat Jul 02, 2016 8:03 am
by mandville
topic locked due to age and prevent confusion