Kunena 7.0.6 & Kunena 6.4.12 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.6 [K 7.0.6] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.

The Kunena team is also pleased to announce the twelfth version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Solved Can't remove the profilebox

More
12 years 1 week ago #156747 by JeZuZz
Hello there,

i can't disable the Profile Box anymore.

First, it worked with this solution in the wiki .
I removed it completely, because i wanted to keep the Kunena-Login module.

That worked, until i displayed another module on the position "kunena_announcements" (now removed ofc).
So, the code from the wiki-entry is still in my template.css (Protostar), but it doesen't seem to fix my problem anymore.

Yes, i'm a fool, but help would be much appreciated.


Thanks in advance. :)

Please Log in or Create an account to join the conversation.

More
12 years 1 week ago #156758 by 9themestore
Hi,

Open the template.css file in the "portal/templates/protostar/css/" path and pates below CSS rules to bottom of file.
Code:
body #Kunena .kpbox { display: none; }

After save please back to frond-end and reload your site.

Hope this helps

- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful :)
The following user(s) said Thank You: JeZuZz

Please Log in or Create an account to join the conversation.

More
12 years 1 week ago #156764 by JeZuZz
Replied by JeZuZz on topic Can't remove the profilebox

9themestore wrote: Hi,

Open the template.css file in the "portal/templates/protostar/css/" path and pates below CSS rules to bottom of file.

Code:
body #Kunena .kpbox { display: none; }

After save please back to frond-end and reload your site.

Hope this helps


Hey,

thanks for your answer, but sadly, it doesen't work.

I just reinstalled Kunena and i still can't get rid of this profilebox.

Please Log in or Create an account to join the conversation.

More
12 years 1 week ago - 12 years 1 week ago #156765 by sozzled
Replied by sozzled on topic Can't remove the profilebox
I know what you did wrong.

Yes, you added the CSS code (mentioned in the Wiki article )
Code:
#Kunena td.kprofileboxcnt, .kprofilebox-left { display: none; }
... but you did not add this at the very end of your Protostar site template file. You inserted the code one line before the end of that file. Move that code to the very end of the file and it will work. ;)
Last edit: 12 years 1 week ago by sozzled.
The following user(s) said Thank You: JeZuZz

Please Log in or Create an account to join the conversation.

More
12 years 1 week ago - 12 years 1 week ago #156766 by JeZuZz
Replied by JeZuZz on topic Can't remove the profilebox

sozzled wrote: I know what you did wrong.

Yes, you added the CSS code (mentioned in the Wiki article )

Code:
#Kunena td.kprofileboxcnt, .kprofilebox-left { display: none; }
... but you did not add this at the very end of your Protostar site template file. You inserted the code one line before the end of that file. Move that code to the very end of the file and it will work. ;)


I added it like this.
I don't think i did anything wrong there?

As i mentioned, it did work before, until i added a joomla module to the position "kunena_announcements" and now i can't get rid of it again.
Last edit: 12 years 1 week ago by JeZuZz.

Please Log in or Create an account to join the conversation.

More
12 years 1 week ago - 12 years 1 week ago #156767 by sozzled
Replied by sozzled on topic Can't remove the profilebox

JeZuZz wrote: I added it like this.
I don't think i did anything wrong there?

This is the last part of your Protostar template CSS file:
Code:
@media (max-width: 768px) { . . . editor { overflow: hidden; position: relative; } #Kunena td.kprofileboxcnt, .kprofilebox-left { display: none; } }
This means that, when the screen display width is less than 768px, the profilebox will disappear. Try it yourself; it works if you resize the window to less than 768 pixels wide! ;)

If you want the profilebox to disappear always, you need to change the Protostar template CSS file like this:
Code:
@media (max-width: 768px) { . . . editor { overflow: hidden; position: relative; } } #Kunena td.kprofileboxcnt, .kprofilebox-left { display: none; }
Last edit: 12 years 1 week ago by sozzled.
The following user(s) said Thank You: JeZuZz

Please Log in or Create an account to join the conversation.

Time to create page: 0.271 seconds