Read before updating: How to Update Kunena Templates - More detail

NTS Kay 5.2.x - Bugs

ciklon's Avatar Topic Author
Senior Member Senior Member
  • Posts: 63
  • Thanks: 11

NTS Kay 5.2.x - Bugs

7 years 8 months ago - 7 years 8 months ago
#13728
Bug #1: Quick Reply Button
- Repeat button
- Missing button when selecting the "Type Quickreply - Modal" option in the administration



Solution for v5.2.4: row 22-25 in /components/com_kunena/template/nts_kay/layouts/message/item/actions
Code:
<?php if ($this->quickreply && $quick == 0) : ?> <a data-related="kreply<?php echo $this->message->displayField('id'); ?>_form" role="button" class="btn btn-default Kreplyclick" rel="nofollow"><i class="glyphicon glyphicon-share-alt"></i> <?php echo JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_QUICK_REPLY'); ?> <?php echo KunenaIcons::undo() . ' ' . JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_QUICK_REPLY'); ?>


change with
Code:
<?php if ($this->quickreply && $quick != 2) : ?> <a id="btn_qreply" href="#kreply<?php echo $this->message->displayField('id'); ?>_form" role="button" class="btn btn-default Kreplyclick" data-toggle="modal" data-target="#kreply<?php echo $this->message->displayField('id'); ?>_form" rel="nofollow"> <?php echo KunenaIcons::undo() . ' ' . JText::_('COM_KUNENA_MESSAGE_ACTIONS_LABEL_QUICK_REPLY'); ?>

Distance between buttons: Add new line after row 33:
Code:
<br />
"I know that I know nothing" - Socrates

Attachments:

Last edit: 7 years 8 months ago by ciklon.
The following user(s) said Thank You: redcardell

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

ciklon's Avatar Topic Author
Senior Member Senior Member
  • Posts: 63
  • Thanks: 11

Re: NTS Kay 5.2.x - Bugs

7 years 8 months ago - 7 years 8 months ago
#13802
Bug #2: Quick Reply Layout
- No label over the writing area
- The editor buttons are offset to the right of the beginning



Solution for v5.2.4: editing /components/com_kunena/template/nts_kay/layouts/message/editquickreply.php

row 136
Code:
<div class="form-group">

change to
Code:
<div class="control-group">

row 145
Code:
<div class="form-group">

change to
Code:
<div class="control-group">

row 146
Code:
<label class="col-md-12 control-label" style="padding:0;">

change to
Code:
<label class="control-label" style="padding:0;">
"I know that I know nothing" - Socrates

Attachments:

Last edit: 7 years 8 months ago by ciklon.
The following user(s) said Thank You: redcardell

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

ciklon's Avatar Topic Author
Senior Member Senior Member
  • Posts: 63
  • Thanks: 11

Re: NTS Kay 5.2.x - Bugs

7 years 8 months ago
#13803
Bug #3: link to personal messages in the profile menu



Solution for v5.2.4: edit /components/com_kunena/template/nts_kay/layouts/widget/login/logout/default.php

row 111
Code:
<a href="<?php echo $this->pm_link; ?>" class="btn btn-link">

change to
Code:
<a href="<?php echo $this->pm_link; ?>">
"I know that I know nothing" - Socrates

Attachments:

The following user(s) said Thank You: redcardell

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

ciklon's Avatar Topic Author
Senior Member Senior Member
  • Posts: 63
  • Thanks: 11

Re: NTS Kay 5.2.x - Bugs

7 years 8 months ago - 7 years 8 months ago
#13804
Bug #4: Repeating icons and align PM icon when the option "Load External CDN Fontawesome" is enabled .



Solution for v5.2.4: edit /components/com_kunena/template/nts_kay/assets/less/style.less

- For repeating icons remove row 1774 to 1780
Code:
.ku-localtion span:before { content: "\f015"; } .ku-email span:before { content: "\f0e0"; }

- For align PM icon
Code:
.ku-private { span { height: auto; width: auto; &:before { display: none; } a.btn { background: transparent; border: 0; border-radius: 0; font-size: 18px; height: 22px;; margin: 0; padding: 0; width: 22px; i { display: block; } } } }

change font-size: to initial
height:, width: to inherit
Code:
.ku-private { span { height: auto; width: auto; &:before { display: none; } a.btn { background: transparent; border: 0; border-radius: 0; font-size: initial; height: inherit; margin: 0; padding: 0; width: inherit; i { display: block; } } } }
"I know that I know nothing" - Socrates

Attachments:

Last edit: 7 years 8 months ago by ciklon.
The following user(s) said Thank You: redcardell

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

Time to create page: 0.243 seconds