Hello,
Don't think that there is an option to do that, so the solution will probably be to :
- Go to "Hikashop->Display->Views"
- Edit the "form" file of the "vote" view of your front-end template
- Change that line :
<p class="hikashop_form_comment ui-corner-top"><?php echo JText::_('HIKASHOP_LET_A_COMMENT'); ?></p>
By :
<?php
$my = JFactory::getUser();
jimport('joomla.access.access');
$config =& hikashop_config();
$userGroups = JAccess::getGroupsByUser($my->id, (bool)$config->get('inherit_parent_group_access'));//$my->authorisedLevels();
if(!empty($userGroups)){
foreach($userGroups as $userGroup){
if($userGroup == YourGroupID){
?>
<p class="hikashop_form_comment ui-corner-top"><?php echo JText::_('HIKASHOP_LET_A_COMMENT'); ?></p>
Note that you'll have to replace the YourGroupID by your Joomla user group ID that you'll be able to find through your Joomla User manager page
- And edit that lines :
By :