Osclass forums
Support forums => Plugins => Cars attributes => Topic started by: harry on June 03, 2018, 02:20:20 pm
-
Hello
I would be grateful if someone could help to create Car brand as a list on main page as attached picture!
All help will support me!
Regards
-
Hello,
Something like this will do the trick. Just modify it to suit your theme.
<?php
echo "<ul>";
$makes = ModelCars::newInstance()->getCarMakes();
foreach($makes as $key => $make) {
$search_url = osc_search_url(array('make' => $make['s_name']));
echo "<li><a href='".$search_url."'>".$make['s_name']."</a></li>";
}
echo "</ul>";
?>
Regards.