it depends where this template is being used...
this code:
PHP Code:
if (THIS_SCRIPT === showthread)
{
$globaltemplates = array_merge($globaltemplates, array(
'post_thanks_button',
'post_thanks_postbit',
'post_thanks_postbit_legacy'
));
}
will only cache the above templates in showthread.php
if the adv_portal_post_thanks_stats_bit and adv_portal_post_thanks_stats are displayed on the showthread.php page then you can just add it to the $globaltemplates array
PHP Code:
if (THIS_SCRIPT === showthread)
{
$globaltemplates = array_merge($globaltemplates, array(
'post_thanks_button',
'post_thanks_postbit',
'post_thanks_postbit_legacy',
'adv_portal_post_thanks_stats',
'adv_portal_post_thanks_stats_bit'
));
}
if it's on another page.. add
PHP Code:
if (THIS_SCRIPT === script page goes here)
{
$globaltemplates = array_merge($globaltemplates, array(
'adv_portal_post_thanks_stats'
'adv_portal_post_thanks_stats_bit'
));
}