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.

Question Remove some bbcodes from editor

More
11 years 7 months ago #1 by DDN
I searched around internet but found only solution for older version. So ... which file i should parse for remove this bbcodes in 2.0.2 version of Kunena:

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

More
11 years 7 months ago - 11 years 7 months ago #2 by TKtemp
How about to add this css rules to your JOOMLA default template css file:

Code:
#Kunena ul#kbbcode-toolbar li a#kbbcode-help-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-map-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-list-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-olist-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-ulist-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-sup-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-sub-button, #Kunena ul#kbbcode-toolbar li a#kbbcode-strike-button { display: none; }
Last edit: 11 years 7 months ago by TKtemp.
The following user(s) said Thank You: san65, DDN

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

More
11 years 7 months ago #3 by DDN
Replied by DDN on topic Remove some bbcodes from editor
Eh, elegant solution. Put this code in Kunena default css template, it's work. But why don't work this method for removal separators?
Code:
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator1, #Kunena ul#kbbcode-toolbar li a#kbbcode-separator2, #Kunena ul#kbbcode-toolbar li a#kbbcode-separator3 { display: none; }

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

More
11 years 7 months ago - 11 years 7 months ago #4 by TKtemp
Well, looks like that numbering of separators is removed and have not id, so you can show all or hide all
Code:
#Kunena ul#kbbcode-toolbar li a.kbbcode-separator { display: none; }

P.S. It is better to insert this code in JOOMLA template css file, you'll not lose your changes when upgrade kunena.
Last edit: 11 years 7 months ago by TKtemp.

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

More
11 years 7 months ago #5 by DDN
Replied by DDN on topic Remove some bbcodes from editor
Nope, separators are not removed. Anyway thanks, main is bbcodes.

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

More
11 years 6 months ago #6 by san65
Hi,

Following the advice given in this thread, I made the following addition to the css/personal.css file in the beez20 template:

/* code to suppress kunena bb codes ... */
#Kunena ul#kbbcode-toolbar li a#kbbcode-help-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-map-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-list-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-olist-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-ulist-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-sup-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-sub-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-strike-button
#Kunena ul#kbbcode-toolbar li a#kbbcode-image-button,
#Kunena ul#kbbcode-toolbar li a#kbbcode-link-button {
display: none;
}


The outcome of the addition is visible in the attached image.

I would like to suppress the BB code and image corresponding to "image links". Request Kunena experts for guidance on this.

TIA.



Some BB code image icons continue to be visible. More important for me, the image link needs
Attachments:

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

More
11 years 6 months ago #7 by TKtemp
Hi,

you are missing comma "," in this line

#Kunena ul#kbbcode-toolbar li a#kbbcode-strike-button,
The following user(s) said Thank You: san65

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

More
11 years 6 months ago #8 by san65
Hello again,

I discovered the problem - one comma was missing after the kbbcode-image-button code.

Taking one step further, is it possible to enable the kbbcode-link-button for moderators?

TIA.

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

More
11 years 6 months ago #9 by TKtemp
Hi,

yes all is possible but not in css file.
This require some line of php code in one or two template files

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

Time to create page: 0.504 seconds