Can anyone tell me how to clear the Smarty template cache? I'm customizing list_elements.tpl and details_elements.tp
l but I keep seeing the old versions no matter what I try. I've cleared my browser cache multiple times and even wrote a cache clearing script that's still not doing it:
<?php
require_once('Smarty.class.php');
$smarty = new Smarty;
$smarty->caching = 1;
// clear only cache for index.tpl
//$smarty->clear_cache('index.tpl');
// clear out all cache files
$smarty->clear_all_cache();
//$smarty->display('index.tpl');
?>
Thanks!