Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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

Question Crypsis Bootstrap 3 Template Beta?

More
10 years 10 months ago - 10 years 10 months ago #166446 by geoffc
I have been playing with the new Crypsis template for Bootstrap 3 templates and have managed to get it to work with a couple of small changes. Our template is a Joostrap template which is practically straight Bootstrap 3.

The first is that we need to define a new CSS rule in our CSS override file:
Code:
#kunena.layout .table { float: left; table-layout: fixed; }

This forces the table to fit within the allocated container area, otherwise the display stretches all over our template columns to to right thus making the modules located on the right hand side of the page impossible to read

The second change we suspect is a coding bug in the file: com_kunena/templates/crypsisb3/layouts/categoryitem/default.php.

The determinations of the column width for the subject column is determined at the top of the file (line 15) based upon whether the field $this->checkbox is set as follows:
Code:
$cols = empty($this->checkbox) ? 5 : 6;

If it is empty, as is our situation the value of cols is set to 5.

However the test in the column header for the column where (we presume) the checkbox would be displayed is testing the field $this->topicActions, and is as follows:
Code:
<?php if (!empty($this->topicActions)) : ?> <td class="col-md-1 center"> <label> <input class="kcheckall" type="checkbox" name="toggle" value="" /> </label> </td> <?php endif; ?>

If we count up the number of col-md-x values we have 1 (icon) +5 (subject) +2 (replies) +3 (last post) +1 (actions) which makes 12 (as intended).

Unfortunately in our case the value of $this->topicActions is null and hence the sum of the col comes to 11, which does not fill the table width, leaving a extra space after the last displayed column.

I suspect that either the two tests should be made the same or alternatively switch the empty test results so that on line 15 the default is 6 if the $this->checkbox field is empty.

I did try setting up a CSS rule for the last displayed td column to fill the width but this tended to swash up the subject column and made the table display a little unbalanced.
Last edit: 10 years 10 months ago by geoffc.
The following user(s) said Thank You: hazel1919

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

More
10 years 10 months ago #166454 by 810
Found the issue with closing user dropdown, plus closing buttons on click.

After next version, the default jquery/bootstrap will be removed.

So its loading your templates bootstrap and jquery versions.
The following user(s) said Thank You: hazel1919

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

More
10 years 9 months ago - 10 years 9 months ago #166586 by betteryouthanme
Anything new in the 4.0.3 version? Or do the numbers just change with the version of Kunena? ;)

Two things fill the mind with ever new and increasing wonder and awe - the starry heavens above me and the moral law within me. Immanuel Kant
Last edit: 10 years 9 months ago by betteryouthanme.

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

More
10 years 9 months ago #166591 by sozzled
For what it's worth, you may be interested in reading 810's comment in another topic and my response .

From what I have read, there are proposed changes forecast for J! 3.7:

3.7 Add bootstrap compatibility layer as a Joomla layer to allow different versions of bootstrap or other CSS style frameworks to be used.

Until then, we may just have to hold our [collective] breaths.

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

More
10 years 9 months ago #166592 by betteryouthanme

sozzled wrote: For what it's worth, you may be interested in reading 810's comment in another topic and my response .

From what I have read, there are proposed changes forecast for J! 3.7:

3.7 Add bootstrap compatibility layer as a Joomla layer to allow different versions of bootstrap or other CSS style frameworks to be used.

Until then, we may just have to hold our [collective] breaths.


Thanks for the infos. So i think i'll update to 4.0.4 as soon as it is released and use the Blue Eagle template for the time being.

Thanks for all the work. Your an awesome team with an awesome project ;)

Two things fill the mind with ever new and increasing wonder and awe - the starry heavens above me and the moral law within me. Immanuel Kant

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

More
10 years 9 months ago #166650 by hazel1919

betteryouthanme wrote:

sozzled wrote: For what it's worth, you may be interested in reading 810's comment in another topic and my response .

From what I have read, there are proposed changes forecast for J! 3.7:

3.7 Add bootstrap compatibility layer as a Joomla layer to allow different versions of bootstrap or other CSS style frameworks to be used.

Until then, we may just have to hold our [collective] breaths.


Thanks for the infos. So i think i'll update to 4.0.4 as soon as it is released and use the Blue Eagle template for the time being.

Thanks for all the work. Your an awesome team with an awesome project ;)


I think I will do the same, I want to port my community over to 100% native Joomla ASAP and it looks like Blue Eagle is the only way this is going to happen (at least this year).

I also want to thank you and 810 for the excellent work, I think it will be well worth the wait!

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

Time to create page: 0.258 seconds