Title: dphi's Replies | WordPress.org

---

# dphi

  [  ](https://wordpress.org/support/users/dphi/)

 *   [Profile](https://wordpress.org/support/users/dphi/)
 *   [Topics Started](https://wordpress.org/support/users/dphi/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dphi/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dphi/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dphi/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dphi/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dphi/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Error in widgets with new WordPress Version 5.8 – wp_enqueue_script() and wp](https://wordpress.org/support/topic/error-in-widgets-with-new-wordpress-version-5-8-wp_enqueue_script-and-wp/)
 *  Thread Starter [dphi](https://wordpress.org/support/users/dphi/)
 * (@dphi)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/error-in-widgets-with-new-wordpress-version-5-8-wp_enqueue_script-and-wp/#post-14700768)
 * Hello [@vladytimy](https://wordpress.org/support/users/vladytimy/) ,
 * thanks for your detailed answer. I already know that the issue is coming from
   out theme (in the most cases). The problem is, that this theme was created by
   an agency that isn’t reachable anymore. The theme is discontinued. So i’m trying
   to keep it up-to-date on my own.
 * I just found out that the widgets are registered inside my theme at this function
 *     ```
       function register_cozy_widget() {
           register_widget( 'WT_Cozy_Widget_Info' );
           ...
           unregister_widget('WP_Widget_Text');
           register_widget( 'WT_Widget_Cozy_Text' );
           register_widget( 'WT_Cozy_Widget_Side_Info' );
           register_widget( 'WT_Widget_Cozy_Image' );
           ...
       }
       add_action( 'widgets_init', 'register_cozy_widget' );
       ```
   
 * I also found the specific class where one of these widgets are clarified. But
   i do not know where to have an eye on – what has changed/what i need to modify…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Error in widgets with new WordPress Version 5.8 – wp_enqueue_script() and wp](https://wordpress.org/support/topic/error-in-widgets-with-new-wordpress-version-5-8-wp_enqueue_script-and-wp/)
 *  Thread Starter [dphi](https://wordpress.org/support/users/dphi/)
 * (@dphi)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/error-in-widgets-with-new-wordpress-version-5-8-wp_enqueue_script-and-wp/#post-14692309)
 * Hi [@vladytimy](https://wordpress.org/support/users/vladytimy/)
 * i just found another solution to get the old widget section back – I haven’t 
   tested the plugin yet because we are using such a bunch of plugins and i don’t
   won’t to overload my wordpress instance 🙂
 * I have added this inside my function.php (inside my Theme):
 *     ```
       // deactivate new block editor
       function phi_theme_support() {
           remove_theme_support( 'widgets-block-editor' );
       }
       add_action( 'after_setup_theme', 'phi_theme_support' );
       ```
   
 * But is their any solution to solve the issues to use the new block editor? Or
   is this currently the only way to get the widgets working by deactivating this
   new function?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Aurora Heatmap] Heatmap not properly working with more page views](https://wordpress.org/support/topic/heatmap-not-properly-working-with-more-page-views/)
 *  Thread Starter [dphi](https://wordpress.org/support/users/dphi/)
 * (@dphi)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/heatmap-not-properly-working-with-more-page-views/#post-14561312)
 * Hello [@r3098](https://wordpress.org/support/users/r3098/)
 * I had quite a few other things to do last week. The CSS I have not yet tested,
   but will do so in the next few days.
 * I just find it very strange that it does not work on pages with increased traffic(
   that css not loaded). We also use a plugin to block scripts and CSS files for
   certain pages. The heatmap (Aurora) has not been excluded here (e.g. Mainpage
   phi24.de/ ).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Aurora Heatmap] Heatmap not properly working with more page views](https://wordpress.org/support/topic/heatmap-not-properly-working-with-more-page-views/)
 *  Thread Starter [dphi](https://wordpress.org/support/users/dphi/)
 * (@dphi)
 * [5 years ago](https://wordpress.org/support/topic/heatmap-not-properly-working-with-more-page-views/#post-14528286)
 * Hhm it’s crazy. The thing is that only pages with a specific number of PV might
   have these problems. My Aurora list tells me that it found more than 1000 different
   entries/pages. All with a lower PV count >1000 loads well – mobile and desktop
   view. Only pages with more than (in my current case), 1700 PV has this issue (
   currently 2 pages (but important once)).
 * For caching: We use WPRocket as main caching plugin.

Viewing 4 replies - 1 through 4 (of 4 total)