You'll have to globally disable plugins first to determine if the issue is a plugin or a template or injected code.
To disable the plugin/hook system completely without accessing the Admin CP options, you need to edit includes/config.php and add the following code:
define('DISABLE_HOOKS', true);
With this code in config.php, no plugins will run at all.
To re-enable the plugin system, remove the code again from config.php.
|