Usually, web hosting providers disable WordPress Plugin and Theme Editor tabs by default for security reasons. Enable file editor on your dashboard is very useful when you have an error showing on your pages and want to trace the piece of code causing that or you need to put a custom function in a plugin/theme file.
To enable it, you should make changes to your wp-config.php
in your WordPress installation root directory.
- First, make sure that you’ve FTP or cPanel account access credentials to have access to your WordPress installation files. If you have FTP credentials, then you can use applications such as FileZilla, CrossFTP, Cyberduck, and many more to access WordPress files.
- Using cPanel access credentials or an FTP account, open your WordPress installation root directory -> edit ‘wp-config.php’ file by any editor software like notepad++, vsCode, etc.
- Search for the line
define('DISALLOW_FILE_EDIT', true);
- We need to change “true” to “false” to be
define('DISALLOW_FILE_EDIT', false);
- Save the file and upload it again.

Now, you’ve been granted access to WordPress Plugin and Theme Editor tabs.

If you still need any further assistance, feel free to contact Premium Addons support team from here. We would be more than glad to help 😁