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
This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, these ideas in these topics will not work with later versions and, for that reason, the topics are locked.
This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.
The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, these ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Question suggestion: best credit to designers
15 years 5 months ago #71859
by gonzaunit
suggestion: best credit to designers was created by gonzaunit
suggestion: best credit to designers for next realese Kunena versions
Hello, I am designer templates for kunena, I will like can add more links for example 2, or too if no complete the field "templatebyName" (empty) don´t show space for example "demo ", I will like show "demo"
excellent work :laugh: ,regards
Hello, I am designer templates for kunena, I will like can add more links for example 2, or too if no complete the field "templatebyName" (empty) don´t show space for example "demo ", I will like show "demo"
Code:
<param name="templatebyText" type="hidden" default="demo" />
<param name="templatebyName" type="hidden" default="" />
<param name="templatebyLink" type="hidden" default="http://www.demo.com" />
excellent work :laugh: ,regards
Please Log in or Create an account to join the conversation.
15 years 4 months ago - 15 years 4 months ago #79222
by gonzaunit
Replied by gonzaunit on topic Re: suggestion: best credit to designers
developers please read this:
if templatebyName is empty, this show one space " " after
the first word for example:
"Credin(space or blank) " the correct should be "Credin"
in kunena.php
change, for fix bug
regards
if templatebyName is empty, this show one space " " after
the first word for example:
"Credin(space or blank) " the correct should be "Credin"
in kunena.php
Code:
$template = KunenaFactory::getTemplate();
$this->params = $template->params;
// Credits
echo '<div class="kcredits kms"> ' . CKunenaLink::GetTeamCreditsLink ( $catid, JText::_('COM_KUNENA_POWEREDBY') ) . ' ' . CKunenaLink::GetCreditsLink ();
if ($this->params->get('templatebyText') !=''):
echo ' :: <a href ="'. $this->params->get('templatebyLink').'" rel="follow">' . $this->params->get('templatebyText') .' '. $this->params->get('templatebyName') .'</a>';
endif;
echo '</div>';
change, for fix bug
Code:
$template = KunenaFactory::getTemplate();
$this->params = $template->params;
// Credits
echo '<div class="kcredits kms"> ' . CKunenaLink::GetTeamCreditsLink ( $catid, JText::_('COM_KUNENA_POWEREDBY') ) . ' ' . CKunenaLink::GetCreditsLink ();
if ($this->params->get('templatebyText') !=''):
echo ' :: <a href ="'. $this->params->get('templatebyLink').'" rel="follow">' . $this->params->get('templatebyText') ;
if ($this->params->get('templatebyName')) {
echo ' '.$this->params->get('templatebyName') .'</a>';
} else { echo '</a>'; }
endif;
echo '</div>';
Last edit: 15 years 4 months ago by gonzaunit.
Please Log in or Create an account to join the conversation.
15 years 4 months ago #79284
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re: suggestion: best credit to designers
Hello,
Thanks for it
Thanks for it
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.
- snilloconator
-
- Offline
- Premium Member
-
- aka snilly
15 years 3 months ago #84127
by snilloconator
Replied by snilloconator on topic Re: suggestion: best credit to designers
This has returned in K1.6.3. I added the following code from above and the credits were fixed.
Please Log in or Create an account to join the conversation.
15 years 3 months ago #84130
by gonzaunit
Replied by gonzaunit on topic Re: suggestion: best credit to designers
yes, I would like the credit fixed,
Link
with the code, maybe kunena 1.6.4 Also would be nice to add more than one link, that way we get more sponsors to fund our work as designers of free templates, it's just my opinion
Please Log in or Create an account to join the conversation.
15 years 3 months ago #84143
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re: suggestion: best credit to designers
If i'am remember right, i've added this fix in K1.6.3
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.255 seconds