On this week's podcast, Bob addresses something that lots of you have asked about in the past few weeks: Views theming! He'll talk about when and when not to use Views theming and what, exactly, you're trying to accomplish when you use it. All on this week's Mustardseed Media video podcast!

- Install MAMP
- Done!
Let's discuss your issue over at G&G and see if we can resolve it there. If I find I'm taking some steps for granted, maybe I'll turn it into a podcast episode.function neat_trim($str, $n, $delim='...') { $len = strlen($str); if ($len > $n) { preg_match('/(.{' . $n . '}.*?)\b/', $str, $matches); return rtrim($matches[1]) . $delim; } else { return $str; } }I mostly like to select my theming based on the view display title and field name, instead of just field name because I want the option to set custom theming per view display+field(s). So in your views-view-field--VIEWSdisplayTITLE--body.tpl.php add<?php $string = neat_trim($output, 150); print $string; ?>The above will trim output to only 150 charactors while keeping words intact and adding "..." at the end of the trim. There are unlimited ways to theme your view's $output this is 1 of a million. now for an exercise add a $node_link in replacement to "..." in the template.php neat_trim function.view-field4
more html Is there a way to control the output of a view in this way, field by field?? Views seem so restrictive in this way!! Any suggestions? Thanks for the podcast.