How to Fix “Add New Plugin Menu Not Showing” In WordPress?

In this tutorial, we will discuss how to fix the "Add New Plugin" menu not showing issue in WordPress. This issue prevents users from installing any plugins to manage their WordPress website. Let's go through the detailed steps to resolve this problem.

  • Log in to your cPanel account associated with your WordPress website.
  • Go inside File Manager section.

Select File Manger

  • Go to your WordPress domain directory and locate the wp-config.php file.
  • Right-click on the file and select Edit.

Edit wp-config.php file

define('DISALLOW_FILE_EDIT', true);
define('DISALLOW_FILE_MODS', true);
  • Modify the code by changing true to false as shown below:

Edit Code in wp-config.php file

define('DISALLOW_FILE_EDIT', true);
define('DISALLOW_FILE_MODS', false);
  • Click Save Changes.

Now, return to your WordPress admin area and verify that the changes have taken effect.

That's it! This should resolve the issue and allow you to see the "Add New Plugin" menu in your WordPress admin area.

I hope this article helps you resolve the issue. If you find it useful, please share it with your colleagues. Feel free to share your suggestions and drop your queries to start a discussion on the related topic. Let's connect on social media using the links below.

  • Wordpress plugin option not showing, plugin option not showing
  • 0 Bu dökümanı faydalı bulan kullanıcılar:
Bu cevap yeterince yardımcı oldu mu?

İlgili diğer dökümanlar

How to Access the WordPress Admin Dashboard

WordPress is an easy to work with CMS software. To access a WordPress account, please follow...

How to Remove Sample Comments and Posts From WordPress

You get sample comments and posts in a fresh WordPress install. You can easily remove them in the...

How to Write and Publish Your First Blog Post in WordPress

Writing your first blog post is a fascinating thing. Follow the steps below to do so in...

How to Remove a Post in WordPress

You can remove the published or draft post in WordPress.1. Log in to the WordPress dashboard. 2....

How to Bulk Delete Posts in WordPress

It is possible to delete posts in bulk using WordPress. You can also delete selected posts in...