Quote from Alex Dovlatov on January 30, 2026, 19:15
Hello
This is a PHP configuration limit issue, not a WOOCS problem. When you have many currencies, the settings form sends more fields and PHP cuts them off.
Solution:
You need to increase `max_input_vars` in your PHP settings. Currently it's likely set to 1000 (default).
How to fix (choose one method):
1. Via .htaccess (if you have Apache):
Add this line to your .htaccess file in WordPress root:
php_value max_input_vars 3000
2. Via php.ini:
If you have access to php.ini, add/edit:
max_input_vars = 3000
3. Via wp-config.php:
Add before "That's all, stop editing":
@ini_set('max_input_vars', 3000);
4. Ask your hosting provider:
Contact support and ask them to increase `max_input_vars` to 3000
To verify current value:
- Install "WP phpinfo" plugin temporarily
- Check what `max_input_vars` is currently set to
After increasing this limit, you'll be able to add and save all currencies without reset.
Let me know if you need help with implementation!
Place please actual purchase code of the plugin into the private area of this ticket:
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png
Hello
This is a PHP configuration limit issue, not a WOOCS problem. When you have many currencies, the settings form sends more fields and PHP cuts them off.
Solution:
You need to increase `max_input_vars` in your PHP settings. Currently it's likely set to 1000 (default).
How to fix (choose one method):
1. Via .htaccess (if you have Apache):
Add this line to your .htaccess file in WordPress root:
php_value max_input_vars 3000
2. Via php.ini:
If you have access to php.ini, add/edit:
max_input_vars = 3000
3. Via wp-config.php:
Add before"That's all, stop editing":
@ini_set('max_input_vars', 3000);
4. Ask your hosting provider:
Contact support and ask them to increase `max_input_vars` to 3000
To verify current value:
- Install"WP phpinfo" plugin temporarily
- Check what `max_input_vars` is currently set to
After increasing this limit, you'll be able to add and save all currencies without reset.
Let me know if you need help with implementation!
Place please actual purchase code of the plugin into the private area of this ticket:
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png