Oh, sorry, didn&#39;t see that you want this feature packaged as part of a theme.  <br><br>If it&#39;s in a theme, in page.tpl.php you can add an if() statement checking the path and then adding the text based on it or in template.php under preprocess page, you can check the path and then set the $vars[&#39;help&#39;] variable, which will be sent to page.tpl. <br>
<br>Not sure if this is Drosher (Drupal Kosher) but it would work. <br><br>Sam<br><br><div class="gmail_quote">On Tue, Dec 8, 2009 at 11:25 AM, Holly Ferree <span dir="ltr">&lt;<a href="mailto:hferree@gmail.com">hferree@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



<div>
<font face="Verdana, Helvetica, Arial"><span style="font-size: 12px;">No problem adding another region, but how would people view the block when they install my theme? Can I put code into template.php to print a block for that page only? That would be a great solution.<br>
<font color="#888888">
<br>
Holly Ferree</font><div><div></div><div class="h5"><br>
<br>
<br>
On 12/8/09 11:20 AM, &quot;Sam Cohen&quot; &lt;<a href="mailto:sam@samcohen.com" target="_blank">sam@samcohen.com</a>&gt; wrote:<br>
<br>
</div></div></span></font><blockquote><div><div></div><div class="h5"><font face="Verdana, Helvetica, Arial"><span style="font-size: 12px;">Why not just use a block?  You might have to add a region if you don&#39;t have one at the top of the page, but that&#39;s very simple.<br>

<br>
Sam<br>
<br>
<br>
On Tue, Dec 8, 2009 at 11:18 AM, Steven Jones &lt;<a href="mailto:steven@aella.co.uk" target="_blank">steven@aella.co.uk</a>&gt; wrote:<br>
</span></font><blockquote><font face="Verdana, Helvetica, Arial"><span style="font-size: 12px;">Hi Holly,<br>
<br>
You&#39;ll actually need to create a module that implements hook_help<br>
(probably easier than it sounds).<br>
<br>
If you read this page:<br>
<a href="http://drupal.org/node/206753" target="_blank">http://drupal.org/node/206753</a><br>
and it&#39;s first two sub pages:<br>
<a href="http://drupal.org/node/206754" target="_blank">http://drupal.org/node/206754</a><br>
<a href="http://drupal.org/node/206756" target="_blank">http://drupal.org/node/206756</a><br>
<br>
then you&#39;ll have implemented your hook_help, and it&#39;ll be ready to<br>
customise to your hearts desire!<br>
<br>
Regards<br>
Steven Jones<br>
<br>
Phone : 02476 417 749<br>
Mobile : 07702 131 576<br>
Twitter : darthsteven<br>
<br>
<br>
<br>
2009/12/8 Holly Ferree &lt;<a href="mailto:hferree@gmail.com" target="_blank">hferree@gmail.com</a>&gt;:<br>
&gt; I actually tried using it (so it either doesn&#39;t work or I&#39;m doing something<br>
&gt; wrong...(I&#39;d bet the later)).<br>
&gt; -------------------------<br>
&gt;<br>
&gt; I tried in hook_help() in the template.php:<br>
&gt;<br>
&gt; &lt;?php<br>
&gt;<br>
&gt; function hook_help($path, $arg) {<br>
&gt;  switch ($path) {<br>
&gt;<br>
&gt;    // Help info for the administration theme page<br>
&gt;<br>
&gt;    case &#39;admin/settings/admin&#39;:<br>
&gt;      return &#39;&lt;p&gt;&#39; . t(&#39;This theme is integrated with the color module! To<br>
&gt; customize this theme go to the &lt;a<br>
&gt; href=&quot;/admin/build/themes/settings/accolade&quot;&gt;settings page&lt;/a&gt;. &#39;) . &#39;&lt;/p&gt;&#39;;<br>
&gt;  }<br>
&gt; };<br>
&gt;<br>
&gt; ?&gt;<br>
&gt;<br>
&gt; Thanks for your help,<br>
&gt;<br>
&gt; Holly Ferree, Graphic Designer, BFA<br>
&gt; 813.786.0852<br>
&gt; <a href="mailto:hferree@gmail.com" target="_blank">hferree@gmail.com</a><br>
&gt; <a href="http://www.designbyholly.com/" target="_blank">http://www.designbyholly.com/</a><br>
&gt;<br>
&gt;<br>
&gt; On 12/8/09 5:45 AM, &quot;Steven Jones&quot; &lt;<a href="mailto:steven@aella.co.uk" target="_blank">steven@aella.co.uk</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Or you can use hook_help:<br>
&gt;&gt; <a href="http://api.drupal.org/api/function/hook_help" target="_blank">http://api.drupal.org/api/function/hook_help</a><br>
&gt;&gt;<br>
&gt;&gt; Regards<br>
&gt;&gt; Steven Jones<br>
&gt;&gt;<br>
&gt;&gt; Phone : 02476 417 749<br>
&gt;&gt; Mobile : 07702 131 576<br>
&gt;&gt; Twitter : darthsteven<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2009/12/8 Chris Miller &lt;<a href="mailto:chris@trailheadinteractive.com" target="_blank">chris@trailheadinteractive.com</a>&gt;:<br>
&gt;&gt;&gt; You can check $_GET[&#39;q&#39;], or use the arg() function to check parts of the<br>
&gt;&gt;&gt; current path.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   Chris.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Mon, Dec 7, 2009 at 2:07 PM, Holly Ferree &lt;<a href="mailto:hferree@gmail.com" target="_blank">hferree@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; How do I print a specific message if the page is admin/settings/admin<br>
&gt;&gt;&gt;&gt; (administration theme page)?<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I just want a little note at the top of the page to say that the color<br>
&gt;&gt;&gt;&gt; module can be used with the theme.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Thanks,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Holly Ferree, Graphic Designer, BFA<br>
&gt;&gt;&gt;&gt; <a href="mailto:hferree@gmail.com" target="_blank">hferree@gmail.com</a><br>
&gt;&gt;&gt;&gt; <a href="http://www.designbyholly.com/" target="_blank">http://www.designbyholly.com/</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt; consulting mailing list<br>
&gt;&gt;&gt;&gt; <a href="mailto:consulting@drupal.org" target="_blank">consulting@drupal.org</a><br>
&gt;&gt;&gt;&gt; <a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt;  Chris Miller<br>
&gt;&gt;&gt;  Trailhead Interactive<br>
&gt;&gt;&gt;  <a href="http://www.trailheadinteractive.com" target="_blank">http://www.trailheadinteractive.com</a><br>
&gt;&gt;&gt;  406-750-0107<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; consulting mailing list<br>
&gt;&gt;&gt; <a href="mailto:consulting@drupal.org" target="_blank">consulting@drupal.org</a><br>
&gt;&gt;&gt; <a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; consulting mailing list<br>
&gt;&gt; <a href="mailto:consulting@drupal.org" target="_blank">consulting@drupal.org</a><br>
&gt;&gt; <a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; consulting mailing list<br>
&gt; <a href="mailto:consulting@drupal.org" target="_blank">consulting@drupal.org</a><br>
&gt; <a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
&gt;<br>
_______________________________________________<br>
consulting mailing list<br>
<a href="mailto:consulting@drupal.org" target="_blank">consulting@drupal.org</a><br>
<a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
<br>
</span></font></blockquote></div></div><font face="Verdana, Helvetica, Arial"><span style="font-size: 12px;"><br>
<hr align="CENTER" width="95%" size="3"></span></font><div class="im"><font size="2"><font face="Monaco, Courier New"><span style="font-size: 10px;">_______________________________________________<br>
consulting mailing list<br>
<a href="mailto:consulting@drupal.org" target="_blank">consulting@drupal.org</a><br>
<a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
</span></font></font></div></blockquote><font size="2"><font face="Monaco, Courier New"><span style="font-size: 10px;"><br>
<br>
</span></font></font><div class="im"><font face="Verdana, Helvetica, Arial"><span style="font-size: 12px;">Holly Ferree, Graphic Designer, BFA<br>
813.786.0852<br>
<a href="mailto:hferree@gmail.com" target="_blank">hferree@gmail.com</a><br>
<a href="http://www.designbyholly.com/" target="_blank">http://www.designbyholly.com/</a><br>
</span></font>
</div></div>


<br>_______________________________________________<br>
consulting mailing list<br>
<a href="mailto:consulting@drupal.org">consulting@drupal.org</a><br>
<a href="http://lists.drupal.org/mailman/listinfo/consulting" target="_blank">http://lists.drupal.org/mailman/listinfo/consulting</a><br>
<br></blockquote></div><br>