Hiding left block Hiding left block
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Hiding left block

Started by geewee, November 22, 2003, 12:39:17 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

geewee

Hi everybody,

I am trying to hide the left block when calling coppermine,
but since it is not located within PN, but in /gallery instead,
the following won't work:

if ($name != "gallery") {
  blocks(left);
}


Is there any other variable that I can read within themes.php,
or how would I best go about determining that cpg is called?

geewee


geewee

Thanks Cas,

so it would be like this, right?


if (pnModGetName() != "pnCPG") {
  blocks(left);
}


I can't make much out of the CEID stuff, which seems to be specific to ContentExpress, which I don't use. Anyway, will try it out when I'm back home.

geewee

casNuy

Have not tried it myself but that is how i understand it. There is also a posting on my home-forum on www,nuy.info around that.
http://www.nuy.info/726/index.php?name=PNphpBB2&file=viewtopic&t=253

Cas