to give an example:
I have this lines in my functions.php :
```
if (!OFFSET_PATH) {
// override some options to avoid conflits
setOption('comment_form_toggle', false, true);
setOption('comment_form_pagination', false, true);
// disable some unsupported plugins to avoid loading of unnecessary scripts
enableExtension('colorbox_js', 0, true);
enableExtension('slideshow', 0, true);
}
```
colorbox and slideshow plugin are disabled during setup process.
I only want to disabled it when my theme is used in front end.