Thanks Tegan - that&#39;s very helpful. <br>My pmwiki template file (in the location you mentioned) has<br> &lt;!--PageActionFmt--&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;div id=&#39;wikicmds&#39;&gt;&lt;!--wiki:{$Group}.PageActions {$SiteGroup}.PageActions--&gt;&lt;/div&gt;<br>
&lt;!--PageTitleFmt--&gt; etc.<br><br>I guess this means it reads $Group,PageActions if it exists (which it doesn&#39;t for $Group = Main) otherwise it reads $SiteGroup.PageActions.&nbsp; I guess $SiteGroup is Site.&nbsp; And now it &#39;&#39;does&#39;&#39; seem to work!&nbsp; (Perhaps I hadn&#39;t logged off properly before?) <br>
<br>However, the edit/etc menu is still in the footer, and that does look like it&#39;s hard coded. So now I need to understand better where to put the<br> (:if ! auth edit:)(:noaction:)(:ifend:)<br>you mentioned.&nbsp; Which page? and Where on the page?<br>
<br>Thanks again, James<br><br><br><div><span class="gmail_quote">On 26/03/2008, <b class="gmail_sendername">Tegan Dowling</b> &lt;<a href="mailto:tmdowling@gmail.com">tmdowling@gmail.com</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;">
On Wed, Mar 26, 2008 at 11:21 AM, James Montaldi &lt;<a href="mailto:j.montaldi@gmail.com">j.montaldi@gmail.com</a>&gt; wrote:<br> &gt; At the moment I&#39;m using the default skin. But I might change that.&nbsp;&nbsp;Does it<br> &gt; matter? I thought the skin was just the look and feel.<br>
 <br> <br>In the default PmWiki skin template (in pub\skins\pmwiki\pmwiki.tmpl),<br> there&#39;s a section that looks like this:<br> <br> &lt;!--PageActionFmt--&gt;<br> &lt;div id=&#39;wikicmds&#39;&gt;&lt;ul&gt;&lt;li class=&#39;browse&#39;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a accesskey=&#39;&#39;<br>
 rel=&#39;nofollow&#39;&nbsp;&nbsp;class=&#39;selflink&#39;<br> href=&#39;<a href="http://www.pmwiki.org/wiki/Main/HomePage&#39;">http://www.pmwiki.org/wiki/Main/HomePage&#39;</a>&gt;View&lt;/a&gt;<br> &lt;/li&gt;&lt;li class=&#39;edit&#39;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a accesskey=&#39;e&#39;&nbsp;&nbsp;rel=&#39;nofollow&#39;<br>
 class=&#39;wikilink&#39;<br> href=&#39;<a href="http://www.pmwiki.org/wiki/Main/HomePage?action=edit&#39;">http://www.pmwiki.org/wiki/Main/HomePage?action=edit&#39;</a>&gt;Edit&lt;/a&gt;<br> &lt;/li&gt;&lt;li class=&#39;diff&#39;&gt;&nbsp;&nbsp; &lt;a accesskey=&#39;h&#39;&nbsp;&nbsp;rel=&#39;nofollow&#39;<br>
 class=&#39;wikilink&#39;<br> href=&#39;<a href="http://www.pmwiki.org/wiki/Main/HomePage?action=diff&#39;">http://www.pmwiki.org/wiki/Main/HomePage?action=diff&#39;</a>&gt;History&lt;/a&gt;<br> &lt;/li&gt;&lt;li class=&#39;upload&#39;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a accesskey=&#39;ak_attach&#39;&nbsp;&nbsp;rel=&#39;nofollow&#39;<br>
 class=&#39;wikilink&#39;<br> href=&#39;<a href="http://www.pmwiki.org/wiki/Main/HomePage?action=upload&#39;">http://www.pmwiki.org/wiki/Main/HomePage?action=upload&#39;</a>&gt;Attach&lt;/a&gt;<br> &lt;/li&gt;&lt;li class=&#39;print&#39;&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;a accesskey=&#39;&#39;&nbsp;&nbsp;rel=&#39;nofollow&#39;<br>
 class=&#39;wikilink&#39;<br> href=&#39;<a href="http://www.pmwiki.org/wiki/Main/HomePage?action=print&#39;">http://www.pmwiki.org/wiki/Main/HomePage?action=print&#39;</a>&gt;Print&lt;/a&gt;<br> <br> &lt;/li&gt;&lt;/ul&gt;<br>
 &lt;/div&gt;<br> <br> This is where the page actions displayed in the upper-right of the<br> default skin come from -- the links are &#39;hard-coded&#39; into the skin<br> here.&nbsp;&nbsp;There&#39;s a nifty, nifty feature that lets you suppress display<br>
 of this section, conditionally, from within the wiki (!):&nbsp;&nbsp;That first<br> bit, &lt;!--PageActionFmt--&gt; is in the form of an html comment, but it&#39;s<br> also a section identifier used by the pmwiki scripts.<br> <br>
 To suppress display of that section unless the user is logged in with<br> edit rights, have this somewhere on your page (or on your<br> GroupHeader):<br> <br> (:if ! auth edit:)(:noaction:)(:ifend:)<br> <br> Some skins have the identified sections that display Site pages,<br>
 instead of hard-coding features such as the header, this actions area,<br> etc. -- when that &#39;s the case, you can modify how such&nbsp;&nbsp;section of the<br> page looks and acts by editing the page, as well as by using<br> (:noheader:), (:noaction:), (:noleft:), etc.<br>
 </blockquote></div><br>