Quote:
Originally Posted by HMBeaty
You could create a plugin with the hook location cache_templates and in the box for the Plugin PHP Code you would insert this
|
Quote:
Originally Posted by Lynne
for vB4:
PHP Code:
$cache[] = 'your_template';
OR
PHP Code:
$cache = array_merge($cache, array(
'your_template1',
'your_template2',
'your_template3',
'your_template4',
'your_template5'
));
|
so i need to create a new plugin and then put the code that you give me Lynne? correct?