Title: Admin dashboard performance
Last modified: August 31, 2022

---

# Admin dashboard performance

 *  Resolved [ILLID](https://wordpress.org/support/users/mihail-barinov/)
 * (@mihail-barinov)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/admin-dashboard-performance/)
 * Hi,
 * So I found some big problems in performance for admin pages.
    The problem is 
   in theplus_pro_api_connection_field function. It is called for options inside
   ThePlus ‘Extra options’ page but in fact it is called on every page of the admin
   dashboard. It has a very slow query that fetches all site pages for ‘Woocomerce
   Thank You Page’. Please fix this issue so that the query is called only inside
   ThePlus settings page. For now I am using current code snippet to fix it:
 *     ```
       add_filter( 'theplus_pro_api_con_field', 'apptio_disable_theplus_filter', 1 );
       function apptio_disable_theplus_filter( $args ) {
           if ( ! isset( $_GET['page'] ) || $_GET['page'] !== 'theplus_api_connection_data' ) {
               remove_all_filters( 'theplus_pro_api_con_field' , 11 );
           }
           return $args;
       }
       ```
   
 * But it is better if you fix the problem on your side.

Viewing 1 replies (of 1 total)

 *  Plugin Author [POSIMYTH](https://wordpress.org/support/users/posimyththemes/)
 * (@posimyththemes)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/admin-dashboard-performance/#post-15972800)
 * Hello [@mihail-barinov](https://wordpress.org/support/users/mihail-barinov/)
 * Thanks a lot for sharing in-depth, Such detailed explanation with solution made
   our work so easy. We have included in our release today [https://roadmap.theplusaddons.com/updates](https://roadmap.theplusaddons.com/updates)
 * Hope you love our new update with other improvements too. We always looking for
   feedback and take immediate actions on all possible things. So, Feel free to 
   reach us anytime for anykind of help/feedback/suggestions.

Viewing 1 replies (of 1 total)

The topic ‘Admin dashboard performance’ is closed to new replies.

 * ![](https://ps.w.org/the-plus-addons-for-elementor-page-builder/assets/icon-256x256.
   gif?rev=2698100)
 * [The Plus Addons for Elementor - Addons for Elementor, Page Templates, Widgets, Mega Menu, WooCommerce](https://wordpress.org/plugins/the-plus-addons-for-elementor-page-builder/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/the-plus-addons-for-elementor-page-builder/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/the-plus-addons-for-elementor-page-builder/)
 * [Active Topics](https://wordpress.org/support/plugin/the-plus-addons-for-elementor-page-builder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/the-plus-addons-for-elementor-page-builder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/the-plus-addons-for-elementor-page-builder/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [POSIMYTH](https://wordpress.org/support/users/posimyththemes/)
 * Last activity: [3 years, 7 months ago](https://wordpress.org/support/topic/admin-dashboard-performance/#post-15972800)
 * Status: resolved