Userlist Removal
- bodiska
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 2
- Thank you received: 0
7 years 10 months ago #272
by bodiska
Userlist Removal was created by bodiska
Hello. I'd like to remove the userlist feature, so nobody can see the whole userlist. There is a setting in Kunena to hide it from Guests, but there is not such an option to hide it from everyone. I talked to Kunena, they said I have to create my own template then. I'm using your template. Could you please help me how to do it?
I'd like to get rid of this page, "forum/profile/list", so noone can access this.
Thanks in advance
I'd like to get rid of this page, "forum/profile/list", so noone can access this.
Thanks in advance
- Eugene S.
-
- Offline
- Administrator
-
7 years 10 months ago #279
by Eugene S.
Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
Replied by Eugene S. on topic Re: Userlist Removal
You must modify the following file: YOUR_SITE/components/com_kunena/template/YOUR_TEMPLATE/html/user/list.php
But it depends from what you need. Theoretically you can write the following code there:
But it depends from what you need. Theoretically you can write the following code there:
<?php defined ( '_JEXEC' ) or die (); ?>
<div class="kblock">
<div class="kheader">
<span class="ktoggler"><a class="ktoggler close" title="<?php echo JText::_('COM_KUNENA_TOGGLER_COLLAPSE') ?>" rel="your_page_name"></a></span>
<h2><span>TITLE YOUR PAGE</span></h2>
</div>
<div class="kcontainer" id="your_page_name">
<div class="kbody">
<div class="your_class">
<p>YOUR STUFF</p>
</div>
<div class="userlist-jump">
<?php $this->displayForumjump(); ?>
</div>
</div>
</div>
</div>
<?php $this->displayWhoIsOnline(); ?>
Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
Moderators: Eugene S.