Kunena 6.2.5 & module Kunena Latest 6.0.7 released

The Kunena team has announce the arrival of Kunena 6.2.5 [K 6.2.5] which is now available for download as a native Joomla extension for J! 4.3.x/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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Solved Remove actions list from Recent Topics view

More
11 years 3 months ago #1 by Baze
Hi guys,

anyone here can tell me where is located the klist-actions table which is being loaded on Recent Topics view? I don't need it in there so i want to remove it, but just from recent topics, not from the other views.

thanks
Baze

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

More
11 years 2 months ago #2 by xillibit
Hello,

Just look into the directory /topics in your template but if you remove it i should impact others views

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: Baze

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

More
11 years 2 months ago #3 by Baze
Can this be solved with css? The menu of recent topcis has the following code
Code:
<li id="current" class="item154 active"><a href="/new/index.php/forum/novi" style="background-position: -20px 35px;"><span>Нови теми и мислења</span></a></li>

and this is the code from the klist-actions table
Code:
<table class="klist-actions">

so i was thinking about something like this:
Code:
#current.item154 .active .klist-actions{ display: none; }

but it's not working, anyone knows what am i doing wrong?

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

More
11 years 2 months ago #4 by TKtemp
Hi,

the right css rule should be
Code:
#Kunena .klist-actions { display: none; }

but you cannot do this because this will hide this table in whole forum.

Only way to do this is to open file
template / blue_eagle / html / topics / default.php

inside you'll find two tables, first for top actions and second for bottom actions

just comment them out with php code
Code:
<?php /* ?><table> ... </table><?php */ ?>
The following user(s) said Thank You: Baze

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

More
11 years 2 months ago #5 by Baze
That's what i was looking for, thanks!

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

More
10 years 10 months ago #6 by mariana2
Hello, i want to remove the actions table on top of the topic view and i can t find the code:
com_kunena&view=topic

in the default.php file, i removed the first table and nothing happened.

<table class="klist-actions">
<tr>
<td class="klist-actions-info-all">
<strong><?php echo intval($this->total) ?></strong>
<?php echo JText::_('COM_KUNENA_TOPICS')?>
</td>

<td class="klist-times-all">
<form action="<?php echo $this->escape(JURI::getInstance()->toString());?>" id="timeselect" name="timeselect" method="post" target="_self">
<?php $this->displayTimeFilter('sel', 'class="inputboxusl" onchange="this.form.submit()" size="1"') ?>
</form>
</td>

<td class="klist-jump-all visible-desktop"><?php $this->displayForumJump () ?></td>

<td class="klist-pages-all"><?php echo $this->getPagination ( 5 ); ?></td>
</tr>
</table>


THANK YOU.

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

Time to create page: 0.517 seconds