Hello Oren,
You can override template file of job list page to update the link to detail page.
E.g: if you use “inline” theme, please open the file:
component/com_jajobboard/views/jajobs/tmpl/themes/inline/jalist-item.php
Finding this code snippet:
<a href=”<?php echo JRoute::_(‘index.php?option=’. JBCOMNAME .’&view=jajobs&layout=jaview&cid[]=’.$item->id.’&Itemid=509&alias=’.$alias); ?>” class=”<?php echo $class;?>”> <?php echo $item->title; ?> </a>
and then replacing it with:
<a href=”<?php echo JRoute::_(‘index.php?option=’. JBCOMNAME .’&view=jajobs&layout=jaview&cid[]=’.$item->id.’&alias=’.$alias.’&Itemid=509′); ?>” class=”<?php echo $class;?>”> <?php echo $item->title; ?> </a>
Replacing Itemid with your one.