Plugin slows down the admin panel — solution inside!
-
The plugin is great! Saved life before Elementor added native form submission save, but still ??
For anyone, who facing the Critical error issue in wp-admin panel, check the count of the saved submissions. While I have 3k+ saved submissions, WP memory limit was set to 768M and it hardly handled it.
There are 3 simple solutions:
1. Delete old submissions you don’t need
2. increase WP_MEMORY_LIMIT more, like: define( ‘WP_MEMORY_LIMIT’, ‘512M’ ); (add or update it in your wp-config.php)
3. in the wp-content/plugins/sb-elementor-contact-form-db/sb_elementor_contact_form_db.php file in line 564 change posts_per_page to 50 instead of -1
‘posts_per_page’ => 50,//- 1,
- The topic ‘Plugin slows down the admin panel — solution inside!’ is closed to new replies.