Around line 7597 in function ClassifiedsShowListingsRow
Find
echo '<td align="center"><a href="', $scripturl, '?action=classifieds;sa=view;id=', $row['ID_LISTING'], '">', ($row['featuredlisting'] == 0 ? censorText($row['title']) : '<b>' . censorText($row['title']) . '</b>'), '</a></td>';
if ($modSettings['class_catlist_showimage'])
{
echo '<td align="center">';
if (!empty($row['primaryID_PICTURE']))
{
if (empty($row['remotefilename']))
echo '<a href="', $scripturl, '?action=classifieds;sa=view;id=', $row['ID_LISTING'], '"><img src="', $modSettings['class_url'], $row['thumbfilename'], '" alt="" /></a>';
else
echo '<a href="', $scripturl, '?action=classifieds;sa=view;id=', $row['ID_LISTING'], '"><img src="', $row['remotefilename'], '" alt="" /></a>';
}
echo '</td>';
}
Change to
if ($modSettings['class_catlist_showimage'])
{
echo '<td align="center">';
if (!empty($row['primaryID_PICTURE']))
{
if (empty($row['remotefilename']))
echo '<a href="', $scripturl, '?action=classifieds;sa=view;id=', $row['ID_LISTING'], '"><img src="', $modSettings['class_url'], $row['thumbfilename'], '" alt="" /></a>';
else
echo '<a href="', $scripturl, '?action=classifieds;sa=view;id=', $row['ID_LISTING'], '"><img src="', $row['remotefilename'], '" alt="" /></a>';
}
echo '</td>';
}
echo '<td align="center"><a href="', $scripturl, '?action=classifieds;sa=view;id=', $row['ID_LISTING'], '">', ($row['featuredlisting'] == 0 ? censorText($row['title']) : '<b>' . censorText($row['title']) . '</b>'), '</a></td>';