Last updated April 13, 2007. Created by Michelle on April 13, 2007.
Log in to edit this page.
If you want a list view, but just want one item after another without the UL/LI markup, this is what you do:
1) Make a list view
2) Run the theming wizard and paste the stuff it tells you to
3) In the bit for template.php:
replace
return theme('item_list', $items);
with
return implode(" ",$items);
This will get you _just_ the stuff in the tpl file with each item separated by spaces and no list markup.
Comments
works
Thanks #10 worked like a charm. Drupal gets a lot more fun once one starts to get the hang of views.