Hi Tom,
I found a bug (maybe) in Teachers List Layout, the image of a teacher will no appear, at line 47 of components/com_biblestudy/views/teacherlist/tmpl/default.php I changed the code:
From:
if ($item->teacher_thumbnail && $admin_params->get('teachers_imagefolder')) { $i_path = 'images/'.$admin_params->get('teachers_imagefolder/') . $item->teacher_thumbnail;}
To:
if ($item->teacher_thumbnail && $admin_params->get('teachers_imagefolder')) { $i_path = 'images/'.$admin_params->get('teachers_imagefolder') .'/'. $item->teacher_thumbnail;}
The trailing / seems to break the path and defaults to images/
Is this the right fix for this? I'm using version 6.1.3.
Thanks!