In your smarty folder, you have a smarty.class.php
Code:
/**
* JON
* This tells Smarty whether to check for recompiling or not. Recompiling
* does not need to happen unless a template or config file is changed.
* Typically you enable this during development, and disable for
* production.
*
* @var boolean
*/
var $compile_check = true;
/**
* This forces templates to compile every time. Useful for development
* or debugging.
*
* @var boolean
*/
var $force_compile = false;
There's a production setting and a development setting.
Let me know how the integration goes and if you need any help just let me know in this thread.