Mark,<br><br>Perhaps you are not familiar with the Drupal Dojo group, which has an ongoing series of lessons covering these and other interesting stuff, just the thing for people getting more involved in intermediate and advanced Drupal fine tuning and more.
<br><br>The group: <a href="http://groups.drupal.org/drupal-dojo">http://groups.drupal.org/drupal-dojo</a><br><br>Special group site with lesson roundups: <a href="http://drupaldojo.com">http://drupaldojo.com</a><br><br>Class notes on theming lesson that was broadcast (you can download the notes and the code from the class, and maybe even the old video podcast): 
<br><br>1.&nbsp; notes:&nbsp; <a href="http://groups.drupal.org/node/2764">http://groups.drupal.org/node/2764</a> <br>2.&nbsp; more references on the same lesson: <a href="http://drupaldojo.com/lesson/theming-and-the-themer-pack">http://drupaldojo.com/lesson/theming-and-the-themer-pack
</a><br><br>saludos,<br><br>Victor Kane<br><a href="http://awebfactory.com.ar">http://awebfactory.com.ar</a><br><br><div><span class="gmail_quote">On 7/25/07, <b class="gmail_sendername">Mark Hope</b> &lt;<a href="mailto:mark@markhope.net">
mark@markhope.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>On 25 Jul 2007, at 19:27, puregin wrote:<br><br>&gt; Hi Mark,
<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;i&#39;d suggest that you install Content Template (contemplate)<br>&gt; module, and Developer Module.<br><br>Never had much success with contemplate but will look again at devel.<br><br>&gt; These will help you to discover the way to reference the fields you
<br>&gt; need.<br>&gt; For example, you will probably need to examine<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; $node-&gt;field_news_type[0][&#39;value&#39;]<br>&gt;<br>&gt; or something to that effect.<br>&gt;<br>&gt; Also, <a href="http://php.net">
php.net</a> is a good source of information for basic PHP syntax.<br>&gt;<br>&gt; Using these resources, you&#39;ll find your code probably looks something<br>&gt; like this:<br>&gt;<br>&gt; switch ($node-&gt;field_news_type[0][&#39;value&#39;] == &#39;Retail Week Teaser&#39;) {
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case &#39;Teaser Article&#39;:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// do something<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case &#39;Editorial&#39;:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // do something else<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case &#39;Full News Article&#39;:
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // handle this case<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&gt; }<br>&gt;<br>&gt; Hope this sets you off in the right direction.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Good luck, Djun<br><br>Thanks for the help!<br><br><br>&gt;<br>&gt;
<br>&gt; On 25-Jul-2007, at 10:55 AM, Mark Hope wrote:<br>&gt;<br>&gt;&gt; I&#39;ve got a CCK content type using a field called &#39;field_news_type&#39;<br>&gt;&gt;<br>&gt;&gt; I&#39;m looking to conditionally output some code based on the value of
<br>&gt;&gt; the CCK field.<br>&gt;&gt; The Field has a possible 3 values:<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Editorial<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Full News Article<br>&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Teaser Article<br>&gt;&gt;<br>&gt;&gt; I need to do something like:
<br>&gt;&gt;<br>&gt;&gt; if $field_news_type = Retail Week Teaser {<br>&gt;&gt;&nbsp;&nbsp; //dothis<br>&gt;&gt; }<br>&gt;&gt;<br>&gt;&gt; Any pointers would be appreciated.<br>&gt;&gt;<br>&gt;&gt; Thanks<br>&gt;&gt; Mark<br>&gt;&gt;
<br>&gt; _______________________________________________<br>&gt; themes mailing list<br>&gt; <a href="mailto:themes@drupal.org">themes@drupal.org</a><br>&gt; <a href="http://lists.drupal.org/mailman/listinfo/themes">http://lists.drupal.org/mailman/listinfo/themes
</a><br><br>_______________________________________________<br>themes mailing list<br><a href="mailto:themes@drupal.org">themes@drupal.org</a><br><a href="http://lists.drupal.org/mailman/listinfo/themes">http://lists.drupal.org/mailman/listinfo/themes
</a><br></blockquote></div><br>