1) The page you are 'working on' is the one in the browser url. For this modification and the uncached template "bbcode_quote" which shows up when viewing the Discussion, the url is
www.yoursite.com/group.php?etc.... So, I look at the top of group.php and see this line:
PHP Code:
define('THIS_SCRIPT', 'group');
So, if I were to write a plugin to cache the "bbcode_quote" template on the group.php page, I would write:
PHP Code:
if(THIS_SCRIPT == 'group')
{
$globaltemplates = array_merge($globaltemplates, array(
'bbcode_quote'));
}