Keyword

Hiding unwanted fields in frontend editor by user group

More
13 years 6 months ago #93359 by Radik
Thank You very much!

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

More
13 years 2 months ago #93360 by Mihir Patel
Hello Terry, 

Can you tell me how to hide the extrafields from the form.php.......I tried it but not successful. I want two user type in jomsocial. I just want to hide the last extrafield for one of the two user types.

 

Below is the code in form.php. anything i am trying to echo in td...its not even displaying....Am i working on wrong page or wat ???

 

<table class="admintable" id="extraFields" >

<?php foreach ($this->extraFields as $extraField): ?>

<tr>

<td align="right" class="key"><?php echo $extraField->name; ?></td>

<td><?php echo $extraField->element; ?></td>

</tr>

<?php endforeach; ?>

</table>

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

More
10 years 10 months ago - 10 years 10 months ago #93361 by Alessandro Catania
Replied by Alessandro Catania on topic Re: Hiding unwanted fields in frontend editor by user group
Hi, I discovered this topic from 3 years ago. I need to hide some things but the code write here isn't understandable for me that don't know php. I try to re-write the code, but this doesn't work for me. Can anybody correct it?

PS: the file is now at components/com_k2/templates/default/itemform.php i think. send me your feedback
<?php get user ID$user = &amp;JFactory::getUser();$userId = $user->get('id'); get user Group$db =&amp; JFactory::getDBO();$query = "  SELECT ".$db->nameQuote('group')."    FROM ".$db->nameQuote('jos_k2_users')."    WHERE ".$db->nameQuote('userID')." = ".$db->quote($userId).";  ";$db->setQuery($query);$userGroup = $db->loadResult();?>
<?php if($userGroup == 2 OR $userGroup == 4) : ?>    <div id="k2ToggleSidebarContainer">     <a href="#" id="k2ToggleSidebar"><?php echo JText::_('Toggle sidebar'); ?></a>    </div>   <?php endif; ?>

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


Powered by Kunena Forum