PDA

View Full Version : How to cache the uncached templates


KURTZ
06-25-2010, 10:10 AM
Hi folks, i need help (or tips) about the uncached templates, in the last days i've installed some products that have in some particular pages an uncached template, and i wanna cache them without waiting the author ...

for example: here's the 'adavanced forum rules (https://vborg.vbsupport.ru/showthread.php?t=236069)' made by valter, i found an uncached template when i check an user profile.

so what i need is to know how i can cache this template ... remember i'm totally newbie about this things ... :) thanks in advantage for your tips ...

Lynne
06-25-2010, 01:56 PM
You asked this in another thread also, so I posted it there, but here it is again.

for vB4:
$cache[] = 'your_template';

OR
$cache = array_merge($cache, array(
'your_template1',
'your_template2',
'your_template3',
'your_template4',
'your_template5'
));

Nirjonadda
04-08-2012, 08:06 PM
where I can add this code to make my uncached templates working?

kh99
04-08-2012, 08:11 PM
You should be able to create a plugin using hook cache_templates. You might want to put an 'if' around it so it doesn't get cached when it's not used, like:

if (THIS_SCRIPT == 'something')
{
$cache[] = 'your_template';
}


but I suppose it's better to cache it on every page than to not have it cached when it's used, so if you're not sure about it, just leave out the if.