- Posts: 258
- Thank you received: 24
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
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
13 years 3 months ago #138508
by Baze
Remove actions list from Recent Topics view was created 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
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.
13 years 3 months ago #138519
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Remove actions list from Recent Topics view
Hello,
Just look into the directory /topics in your template but if you remove it i should impact others views
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.
13 years 3 months ago #138582
by Baze
Replied by Baze on topic Remove actions list from Recent Topics view
Can this be solved with css? The menu of recent topcis has the following code
and this is the code from the klist-actions table
so i was thinking about something like this:
but it's not working, anyone knows what am i doing wrong?
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.
13 years 3 months ago #138583
by TKtemp
Replied by TKtemp on topic Remove actions list from Recent Topics view
Hi,
the right css rule should be
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
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.
13 years 3 months ago #138585
by Baze
Replied by Baze on topic Remove actions list from Recent Topics view
That's what i was looking for, thanks!
Please Log in or Create an account to join the conversation.
12 years 11 months ago #143486
by mariana2
Replied by mariana2 on topic Remove actions list from Recent Topics view
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.
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.231 seconds