Search Results (Searched for: preview not)

17 Jul 2026 22:05
A new Version 3.0.0 of the Kunena Topic to Article component on Github and JED has been published.

What’s New

Version 3.0.0

Changed:
- Major internal refactoring while preserving the existing article-generation workflow.
- Extracted Kunena reads, article rendering, traversal, notifications and result handling into dedicated classes.
- Updated compatibility work for Joomla 5/6 and Kunena 6/7.
- Post info block appearance can now be customized from the component form.
- Preview rendering now uses a frontend iframe.

Fixed:
- Improved handling of malformed BBCode fragments.
- Fixed external BBCode URL conversion cases.
- Fixed layout breakage caused by malformed video links.
- Fixed Link to Kunena Post output when post relation display is disabled.

Optional plugin:
- Updated the optional post-anchor positioning plugin to version 3.0.0.
- The plugin may partially improve Kunena's positioning on post anchors in long topics with many images.
05 Jul 2026 17:53 - 05 Jul 2026 18:01
TreeK is available to download and use in two editions. Free vs Pro

The addon TreeK for the Kunen forum, which allows forum users to work with topic post trees, has been published on Github  and is registered on JED (Joomla Extensions Directory).

TreeK is published in two editions:
  • TreeK Free: a usable free edition with the topic tree, basic settings, post text teaser, text export, and parent-post navigation.
  • TreeK Pro: adds workflow and comfort features such as screenshot teaser, flat view, comfort symbols, BBCode/HTML export, topic monitoring, and extended forum-view controls. TreeK Pro is a paid extension and costs 20 €.
Free vs ProTreeK Free is intended to be a real working edition, not a demo.
TreeK Pro adds comfort, export, monitoring, and forum-view workflow features.

The meaning of all TreeK options and the ways to use them are described in more detail on this project site.

TreeK Pro can be fully tested on this site, for example in the forum topic  Example of tree

Free
  • Open the post tree from a Kunena topic and from the topics list.
  • Display the post tree.
  • Highlight the latest and active rows.
  • Use the tree settings window.
  • Grid lines for reading structure.
  • Post text as tooltip.
  • Start row with Subject + Author or Subject.
  • Show date and time.
  • Show post index.
  • Text teaser.
  • Text export.
  • Jump from the tree back to the Kunena topic.
  • Parent-post navigation in the forum view.
Pro options may be shown in the Free user interface as locked preview items, but executable Pro features are not shipped in the Free package.

Pro
  • Draggable settings window.
  • Tooltips for TreeK buttons and symbols.
  • Start row with Author + Subject.
  • Screenshot teaser.
  • Flat list view.
  • Comfort symbols for navigation and highlighting.
  • Save and restore settings.
  • Export tree as BBCode.
  • Export tree as HTML.
  • Topic monitoring notice when a post is added.
  • Comfort form header.
  • Subject suffixes.
  • Collapsed attachments.
  • Inline action buttons.
Detailed information about TreeK can be found on the dedicated website treek.support .
02 Jun 2026 17:05 - 04 Jun 2026 12:59
sceditor update pack was created by joomod
what I have done (and hopefully fixed) is for sceditor and  Kunena v7.0.5+ only   (ckeditor will be next :)
  1. edit the setup call to use the bbcode settings from the config to en/disable buttons.
  2. add confidential | hide | spoiler - now can be used in sceditor
  3. added the undo plugin (with buttons)
  4. added the language support within sceditor
  5. little restyling of the editor layout (fixed buttons - undo/redo, cut/copy/paste, source etc on the left side)
  6. added the poll edit suport in sceditor (if poll exists, data are fetched)
  7. the main work: image size (as included in 7.0.5) and fetching image attributes if img selected
    (also added alt and float attribute for images)
in the package you will find a detailed explanation for which files and where are edited
all files in the package are in the edited version, based on 7.0.5 and in their used folder structure
BUT
I have NOT included the minified versions of sceditor and bbcode, because I don't know
a secure online tool - so just keep the simply renamed full versions or the kunena team can minify it.

for a preview you may look here:
bg310.breastguide.org/index.php/de/forum...25-welcome-to-kunena

Part of the message is hidden for the guests. Please log in or register to see it.


updated: jquery poll detect and disable poll edit (if config poll edit = disabled)
               new famfamfam.png and default.css  including, using kunena icons
 

File Attachment:

File Name: kunena.sce...6-04.zip
File Size:401.14 KB


 
17 May 2026 19:04 - 17 May 2026 19:31
Replied by joomod on topic Kunena Poll does not work

Apart from the fact that there is no image on the button, creating a poll there worked fine.

so you say, the poll works in SCEditor?  cause I didn't get anything (not in preview and not in forum)

edit:  got it,  forgot to enable poll in this kategorie 

so it would be better to disable the poll button, if it is NOT allowed in the active category to avoid confusing

as there is the option in config to allow edit of polls, have you found out where/how this can be done?
I could not find out (no button or something in view or edit mode, also tried the reset function)
 
28 Apr 2026 14:09
could figure out the needed corrections for sceditor.
main aspect was to keep old messages (may be from update) in db also work.
old img tag was 
Code:
[img size=xxx]

so 1. edit the bbcode.js from sceditor   (media/kunena/core/js/sceditor/bbcode.js)

        line 566:  (add 'size' attribute name)   attribs = ' size=' + dom.width(element) + 'x' + dom.height(element)
  
          to recognize the new 'size' attribute add these after line 578
       //handle [img size=340x240]url[/img]
         
Code:
if(attrs.size) { match = attrs.size(split(/x/i); width = match[0]; height = match.length ===2 ? match[1] : '';

_important_ 2.   in libraries/src/BBCode/KunenaBBCode.php

         we must define the size connector  'x' to be allowed now (formerly only numbers  \d*)
        
        so line 728  must be edited to:   allow /^\d*x\d*$/[/b]']  

after this images will display in forum view and preview correctly, no matter if they come with
the new style from sceditor [img size=340x240] or from old kunena messages having [img size=340]

the big thing missing in SCEditor is, that the script has no possibility to edit img attributes
(if you activate an image and click the picture icon it does not load the properties of the selected image,
you have to delete and add new to change properties - or use the source code) 


I could find out anything about CKEditor because Kunena has cut out property settings
can anyone help please ???

you can try with the attached files: 

File Attachment:

File Name: newsceditorfiles.zip
File Size:35.69 KB


 
22 Apr 2026 23:56 - 23 Apr 2026 00:56
summary of image settings:

[img]               =>  works, but no size settings
[img=200x67]       works in SC preview, but not in forum view     CK removes the size setting
[img size=200]     works in SC forum view, but not in preview     CK does not open in working mode
22 Apr 2026 17:15 - 22 Apr 2026 17:23
Kunena has changed the method how to define the size of inline images.

in Kunena5 (don't know v6) the code looked like [img size=150]*
*may be if an admin will try to edit this post CK Editor will not work because of this tag
but having this in a posting in Kunena 7 CK Editor won't open to work with.

now in Kunena 7 I cannot find how to set the image size in CK Editor,
even if it is set
(by using SK Editor) CK Editor ignors the params.
Code:
original code set by SK  [img=200x67] only comes as [img]

so how can wet set the size of inline images in CK Editor ?

and also:
SK Editor does not fully work
setting the size on an inline image gives the expected preview,
BUT  in the normal posting view the image is still original size

 
20 Feb 2026 19:33 - 20 Feb 2026 19:34
Release 2.0.2 published

2.0.2  - 2026-02-191. Resolved a conflict between the component and the "Latest Articles" module
  • Fixed a conflict between the component and the "Latest Articles" module that could occur during article previews. As a result, users must now be logged into the site's frontend (in addition to the administrator panel) to view previews. If not logged in, the Preview button will trigger a helpful tooltip instead of opening the preview.
  • Relevant information has been added to the documentation.

 
Displaying 1 - 8 out of 8 results.
Time to create page: 0.267 seconds