hello
I use a Helpdesk component who display in backend all tickets items posted by users. Each item display the name of user with a link who redirect to default Joomla user profile. I would like modify this link for allow me to show CB profile instead..
I found inside a file of this component the code who seem to be used for that:
Code:
<td><a href="<?php echo JRoute::_(RSTicketsProHelper::isJ16() ? 'index.php?option=com_users&view=user&task=user.edit&id='.$item->customer_id : 'index.php?option=com_users&view=user&task=edit&cid[]='.$item->customer_id); ?>"><?php echo $this->escape($item->customer); ?></a></td>
I tried to change the link by replacing "com_users" by "com_comprofiler" but of course this is not enough because instead to be redirected to desired ID profile, I go simply to CB.
Can you please indicate me what is the correct code to use ?
many thanks
cheers