Kunena 6.2.6 released

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

Solved Quick reply flickering on screen then dissappearing

More
7 years 10 months ago - 7 years 10 months ago #1 by jhebbel
Never figured out this bug in my previous thread that was archived.

The quick reply seems to quickly flash the modal on screen then disappear.

Last edit: 7 years 10 months ago by jhebbel.

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

More
7 years 10 months ago #2 by 810
usaaly this is a conglict with the jquery version.

Try to use jquery 2.2.4 or 1.9.x

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

More
7 years 10 months ago #3 by 810
for the new topic issues, you need to clear cache.

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

More
7 years 10 months ago - 7 years 10 months ago #4 by jhebbel
The issue was, even though I commented out all the bootstrap 2 loading lines, bootstrap.js was still being doubled up with version 2 and 3 of the js loading. In my Joomla template I have to explicitly add the line to remove it;
Code:
unset($this->_scripts[JURI::root(true).'/media/jui/js/bootstrap.min.js']);

This bootstrap stuff is a headache but I think I am finally starting to bear down on it.

I am noticing that the version of font awesome I may be loading from the CDN may not be what you guys need; I am seeing a lot of missing icons that have the class prefix "icon-" where the version I am using expects "fa-". What version font awesome should I be using for these?
Last edit: 7 years 10 months ago by jhebbel.

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

More
7 years 10 months ago - 7 years 10 months ago #5 by jhebbel
As I suspected, the template is not compatible with the latest bootstrap, I had to reference a couple extra legacy CSSs to get my icons working:
Code:
$doc->addStyleSheet('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.1/css/font-awesome.min.css'); $doc->addStyleSheet('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css');

I dont want to put the cart ahead of the horse, but I may be up and running now, albeit loading more legacy css than I would like, at least its from a CDN. im2.us/index.php/forum
Last edit: 7 years 10 months ago by jhebbel.

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

More
7 years 10 months ago #6 by jhebbel
For the sake of reference, any of those looking to write their own BS 3 template for this forum, this is my *possibly* final includes:
Code:
// bootstrap 2 removal unset($this->_scripts[JURI::root(true).'/media/jui/js/bootstrap.min.js']); // bootstrap 3 CDN & legacy fonts $doc->addStyleSheet('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'); //$doc->addStyleSheet('https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css'); // Only use if there are plugins present that use the fa- class prefix to load icons $doc->addStyleSheet('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.1/css/font-awesome.min.css'); $doc->addStyleSheet('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css'); $doc->addScript('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js');

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

Time to create page: 0.549 seconds