The 2.x branch currently doesn't support targeting themes like the 1.x version did

Comments

tuccio’s picture

The global variable $theme_key stores the theme machine name so I guess all we need is a php condition after selecting " Pages on which this PHP code returns TRUE (experts only)" such as

<?php
  global $theme_key;
  return ( $theme_key == 'seven' ); // "Seven" is the target theme
?>
pookmish’s picture

StatusFileSize
new2.89 KB

Theme support

aabramos’s picture

Patch works great! Thanks!