Hello,
Yes, you can override template field of Featured Employer module to update that link as follows:
– Override file below on your template
modules/mod_jafeatured_employer/tmpl/default.php
– Find the code line:
[PHP]$url = JRoute::_(“index.php?option=com_jajobboard&view=japrofiles&layout=jaview&cid[]=”.$items[$i]->user_id_tmp.’&alias=’.$items[$i]->company2.’&Itemid=1000′);[/PHP]
– And replace it with:
[PHP]//$url = JRoute::_(“index.php?option=com_jajobboard&view=japrofiles&layout=jaview&cid[]=”.$items[$i]->user_id_tmp.’&alias=’.$items[$i]->company2.’&Itemid=1000′);
$url = JRoute::_(‘index.php?option=com_jajobboard&view=jajobs&layout=myjobs&employerid=’.$items[$i]->user_id_tmp);[/PHP]