<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, May 8, 2015 at 3:43 PM, Petko Yotov <span dir="ltr"><<a href="mailto:5ko@5ko.fr" target="_blank">5ko@5ko.fr</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div id=":450" class="" style="overflow:hidden">Is the information in the documentation relevent?<br>
<br>
  <a href="http://www.pmwiki.org/wiki/PmWiki/GroupCustomizations" target="_blank">http://www.pmwiki.org/wiki/PmWiki/GroupCustomizations</a><br>
<br>
I haven't used or reviewed the Hg recipe but in case it does something differently, I'd also check its documentation page.</div></blockquote></div><br>Looking at this code from hg.php:</div><div class="gmail_extra"><br></div><div class="gmail_extra">===(snip)===</div><div class="gmail_extra"><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap">####### Set up hierarchical configs, headers, footers, attributes & styles
$EnablePGCust = 0;
$hgc = 0; $hgh = 0; $hgf = 0; $hgs = 0; $hgm = 0; $hga = 0;
if (file_exists("$LocalDir/$hggroup.$hgname.php")) {
        include_once("$LocalDir/$hggroup.$hgname.php");
        $hgc = 1;
        }
$hggroups = explode($hgseparator, $hggroup);
while (count($hggroups) != 0) {
        $hg = implode ($hgseparator, $hggroups);
        if ($hgc == 0 && file_exists("$LocalDir/$hg.php")) {
                include_once("$LocalDir/$hg.php");
                $hgc = 1;
                }
...</pre></div><div class="gmail_extra">===(snip)===</div><div class="gmail_extra"><br></div><div class="gmail_extra">It looks to me like Petko's suggestion with the per-group customizations should work perfectly.</div><div class="gmail_extra"><br></div><div class="gmail_extra">Do be aware that that recipe is somewhat abandon-ware and hasn't been touched in quite a while...</div><div class="gmail_extra"><br></div><div class="gmail_extra">-Peter</div></div>