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

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 1.7, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Loved Hack poll v0.3.2.2 for Kunena 1.5.12 and 1.0.11

More
14 years 5 months ago #191 by xillibit
Merci lavsteph, je n'avais jamais remarqué ce petit souci avant. Je corrigerai ça dans la prochaine version de mon hack.

I don't provide support by PM, because this can be useful for someone else.

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

More
14 years 5 months ago #192 by NLkaiser
I got a bug, you should add a post.php in the default_ex template map ;)

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

More
14 years 5 months ago #193 by xillibit
NLkaiser wrote:

I got a bug, you should add a post.php in the default_ex template map ;)

Hello,

Can you precise this, because it's hard to understand ?

I don't provide support by PM, because this can be useful for someone else.

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

More
14 years 5 months ago #194 by Foggo
dyominroma wrote:

how i may fix this


I fixed it by using the post from lavsteph:

Change pollbox.php around line 36
Code:
echo "<fieldset><legend style=\"font-size: 14px;\">"._KUNENA_POLL_OPTIONS."</legend><ul>"; for($i=0; $i < $this_poll_data[0]->options;$i++){ echo "<li><input type=\"radio\" name=\"radio\" id=\"radio_name".$i."\" value=\"".$this_poll_data[$i]->text."\" />".stripslashes($this_poll_data[$i]->text)."<li>"; } echo "</ul></fieldset>";

by
Code:
echo "<fieldset><legend style=\"font-size: 14px;\">"._KUNENA_POLL_OPTIONS."</legend><dl>"; for($i=0; $i < $this_poll_data[0]->options;$i++){ echo "<dt><input type=\"radio\" name=\"radio\" id=\"radio_name".$i."\" value=\"".$this_poll_data[$i]->text."\" />".stripslashes($this_poll_data[$i]->text)."</dt>"; } echo "</dl></fieldset>";

Just change the "ul" in "dl" and the "li" into "dt" and the dots are gone.

And me too am strugling to get the results shown in IE 8.0
In FF everything works excellent (many thanks for this hack btw) but in IE I have a problem to show the results. I can vote, and they are recorded in the DB, but I can see them.
I am still searching for the answer.

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

More
14 years 5 months ago - 14 years 5 months ago #195 by JoniJnm
One bug ( Foggo's image ), plugins/pollbox.php
Code:
echo "<li><input type=\"radio\" name=\"radio\" id=\"radio_name".$i."\" value=\"".$this_poll_data[$i]->text."\" />".stripslashes($this_poll_data[$i]->text)."<li>"
By
Code:
echo "<li><input type=\"radio\" name=\"radio\" id=\"radio_name".$i."\" value=\"".$this_poll_data[$i]->text."\" />".stripslashes($this_poll_data[$i]->text)."</li>";

If you want an extra bullet:
Code:
echo "<li><input type=\"radio\" name=\"radio\" id=\"radio_name".$i."\" value=\"".$this_poll_data[$i]->text."\" />".stripslashes($this_poll_data[$i]->text)."</li><li>&nbsp;</li>";
Last edit: 14 years 5 months ago by JoniJnm.

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

More
14 years 5 months ago #196 by Foggo
You're right, but I used the post from lavsteph who has mentioned to add the / at the end.

But if you don't want any dots/bullets before your poll options, you can change it to dl and dt.
I believe that was the question that dyominroma and JBHawaii asked

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

More
14 years 5 months ago - 14 years 5 months ago #197 by xillibit
New version v0.1.8.2 of the Hack Poll which works on Kunena 1.5.6 :

v0.1.8.2
-FIX : double dots in pollbox (thanks lavsteph, jonijnm...)
-FIX : language strings for english improved (thanks Azure)
-ADD : language strings for brazilianpt (thanks lonnewolf)
-ADD : language strings for russian (thanks dyominroma)
-ADD : new configuration setting which can allow only cetain categories to have a poll

File Attachment:

File Name: hack_poll_v0.gz
File Size:108 KB


This version has two news language string, so the following language need to be updated : italian, spanish, dutch, german, brazilanpt and russian.

I don't provide support by PM, because this can be useful for someone else.
Last edit: 14 years 5 months ago by xillibit.

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

More
14 years 5 months ago #198 by NLkaiser
I get this error ;)
Script: /administrator/components/com_kunena/admin.kunena.php
Line: 889

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

More
14 years 5 months ago #199 by joomlauser
NLkaiser wrote:

I get this error ;)
Script: /administrator/components/com_kunena/admin.kunena.php
Line: 889


Hello. I have got the same errors
Bellow You will find full error message:

Code:
Notice: Unknown configuration variable posted. in /administrator/components/com_kunena/admin.kunena.php on line 888 Assertion failed! Script: /administrator/components/com_kunena/admin.kunena.php Line: 889 Condition: Warning: assert() [function.assert]: Assertion failed in /administrator/components/com_kunena/admin.kunena.php on line 889

I use Joomla 1.5.15 and Kunena 1.5.6.

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

More
14 years 5 months ago #200 by xillibit
Hello,

I have fixed this issue in the version 0.1.8.3 :

v0.1.8.3
-ADD : language strings for polish (thanks joomlauser)
-FIX : when you edit a post, the changes made on the poll aren't saved (thanks jonijm for report this)
-FIX : forgot to apply a modification to the file kunena.config.class which result into an Assertion failed
-MOD : now the poll result is displayed when you go in a thread with a poll instead the form for add your vote
-MOD : the users not logged can olny see the poll results and can't vote

File Attachment:

File Name: hack_poll_...91113.gz
File Size:110 KB

I don't provide support by PM, because this can be useful for someone else.

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

Time to create page: 0.472 seconds