Kunena 6.3.0 released

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

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
9 years 10 months ago #1 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
9 years 10 months ago #2 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
9 years 10 months ago #3 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
9 years 10 months ago - 9 years 10 months ago #4 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: 9 years 10 months ago by sozzled.
The following user(s) said Thank You: JeZuZz

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

More
9 years 10 months ago - 9 years 10 months ago #5 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: 9 years 10 months ago by JeZuZz.

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

More
9 years 10 months ago - 9 years 10 months ago #6 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: 9 years 10 months ago by sozzled.
The following user(s) said Thank You: JeZuZz

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

More
9 years 10 months ago - 9 years 10 months ago #7 by sozzled
Replied by sozzled on topic Can't remove the profilebox

JeZuZz wrote: 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.

I think that's a completely different issue and I am not sure I understand what you mean. Let's fix the question about how to remove the profilebox first. When we've fixed that, then let's talk about the "kunena_announcement" module position. OK?
Last edit: 9 years 10 months ago by sozzled.
The following user(s) said Thank You: JeZuZz

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

More
9 years 10 months ago - 9 years 10 months ago #8 by JeZuZz
Replied by JeZuZz on topic Can't remove the profilebox
You were absolutely right, your code solved the problem.
The whole time i tought the module caused the problem, but i just ****** up the code.

Thank you very much, you're a gentleman and a magician. :D
Last edit: 9 years 10 months ago by sozzled. Reason: Minor edit - remove profanity

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

Time to create page: 0.512 seconds