PLEASE POST YOUR REQUEST IN THE APPROPRIATE THEME CATEGORY. TICKETS POSTED IN OTHER "NON-THEME" CATEGORIES WILL NOT BE PROCESSED AND WILL BE REMOVED.

Before posting, be sure that your WP intallation, the theme and all plugins are up-to-date. Also, be sure that the Wolf WPBakery Page Builder plugin is activated with your theme purchase code in the "Apprearence" > "About the theme" panel > "Licence" tab.

PHP -> 7.4+
WP -> 5.8+

Your Theme -> Latest version
WPBakery Page Builder -> 6.6+
Wolf WPBakery Page Builder Extension -> 3.2+ & Activation with theme purchase code

Thank you!

Okay
  Print

Increasing the PHP Max Input Vars

The PHP Max Input Vars is the maximum number of variables your server can use for a single function. To work properly with a modern WordPress theme set this value to 3000. Lower values can create problems such lost data in your Theme Options, Widgets disappear etc. A common issue that may occur with a low max input vars in menu items not saving.

How to increase the PHP Max Input Vars

Like the other values above, you’ll need to access and modify either the php.ini or the .htaccess files. Most hosts won’t grant you full access to modify the PHP.ini file because it affects the whole server and all the websites hosted on it. Please contact your host first to find out if they can adjust it for you.

For advanced users who have their own server setups and full access to the php.ini file, please go ahead and try Method 1 first before the other method. For standard users, we encourage you to try Method 2 instead.

1 Method: edit the PHP.ini file

NOTE: many shared hosts prohibit you from having direct access to the PHP.ini file. Only do this method if you have direct access to your PHP.ini file or if you’re on your local host.

  1. Locate your PHP.ini file. If you can’t find it, then you can create your own PHP.ini file in the root folder of your WordPress installation.
  2. If you find your existing PHP.ini, open the file and locate the following line of code (xx represents a number): max_input_vars = xx; And set it to your desired limit. For example, 3000.
  3. If you created your own PHP.ini file, then add the same code inside it: max_input_vars = 3000; Simply change the value to the recommended value. For example, 3000.
  4. Save your changes, and reboot your local host or your server.

2 Method: edit the .HTACCESS file

NOTE: make sure to back up your .htaccess file before editing.

  1. Locate your .htaccess file which is usually in the root folder of your WordPress installation. If you can’t find it, it may be because it’s hidden. Here’s a tutorial for Windows and a tutorial for Mac on how to reveal hidden files on your computer.
  2. Open the .htaccess file with a text editor program (Notepad or TextEdit) and add the following line of code: php_value max_input_vars 3000 or the following if you have the suhosin security patch: php_value suhosin.request.max_vars 3000 php_value suhosin.post.max_vars 3000 Simply change the value to the recommended value. For example, 3000.
  3. Save the file and refresh your website.