Hi Folks,
In the Guru courses slider module in the Sensei quickstart package, I noticed a routing error when the course image is clicked. It just reloads the home page as it cannot locate the URL. If you click the course title then it takes you to the course as expected.
I changed the code in the /templates/ja_sensei/html/mod_guru_courses/slide.php file on line 101
From:
echo '<a class="guru-mod--courses__item-thumb" href="'.JRoute::_('index.php?option=com_guru&view=guruPrograms&task=view&cid='.$course["id"]."-".$course["alias"]."&Itemid=".intval($item_id)).'"><img src="'.$image_url.'" alt="" title=""></a>';
TO
echo '<a class="guru-mod--courses__item-thumb" href="'.JRoute::_('index.php?option=com_guru&view=guruPrograms&task=view&cid='.$course["id"]."-".$course["alias"]."&Itemid=".intval($item_id_course)).'"><img src="'.$image_url.'" alt="" title=""></a>';
This then fixed the routing issue.
I wanted to let you know as it appears an error in the quickstart file.
Have a great weekend ahead !
Marc