Title: ReferenceError: elementorDevTools is not defined
Last modified: August 15, 2022

---

# ReferenceError: elementorDevTools is not defined

 *  [HooThemes](https://wordpress.org/support/users/hoosoft/)
 * (@hoosoft)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/referenceerror-elementordevtools-is-not-defined/)
 * ReferenceError: elementorDevTools is not defined with Elementor Pro 3.7.3 when
   editing the posts widget options.

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

 *  Thread Starter [HooThemes](https://wordpress.org/support/users/hoosoft/)
 * (@hoosoft)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/referenceerror-elementordevtools-is-not-defined/#post-15916383)
 * I fixed it by myself.
 *  Thread Starter [HooThemes](https://wordpress.org/support/users/hoosoft/)
 * (@hoosoft)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/referenceerror-elementordevtools-is-not-defined/#post-15918837)
 * There are 2 methods:
    1, Rollback elementor 3.7.x to elementor 3.6.8
 * 2, Modify Elementor Custom Skin php files
 * change code `elementor/widgets/widgets_registered` to `elementor/widgets/register`
 * change code
 *     ```
       public function init_widgets() {
   
       		// Include Widget files
       		require_once( __DIR__ . '/widgets/loop-item.php' );
   
       		// Register widget
       		\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Ele_Custom_Loop_Item_Widget() );
   
       	}
       ```
   
 * to
 *     ```
       public function init_widgets($widgets_manager) {
   
       		// Include Widget files
       		require_once( __DIR__ . '/widgets/loop-item.php' );
   
       		// Register widget
       		$widgets_manager->register( new \Ele_Custom_Loop_Item_Widget() );
   
       	}
       ```
   
 *  [supaiku](https://wordpress.org/support/users/supaiku/)
 * (@supaiku)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/referenceerror-elementordevtools-is-not-defined/#post-15934569)
 * Thank you,
 * We aren’t using your plugin, but rolling back to 3.6.8 fixed this issue on our
   installation as well.
 *  [Tomek Tomczuk](https://wordpress.org/support/users/timovega/)
 * (@timovega)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/referenceerror-elementordevtools-is-not-defined/#post-15942052)
 * thank you. It worked for us as well. Have you reported it to Elementor team?

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

The topic ‘ReferenceError: elementorDevTools is not defined’ is closed to new replies.

 * ![](https://ps.w.org/ele-custom-skin/assets/icon.svg?rev=3536751)
 * [ECS - Ele Custom Skin for Elementor](https://wordpress.org/plugins/ele-custom-skin/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ele-custom-skin/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ele-custom-skin/)
 * [Active Topics](https://wordpress.org/support/plugin/ele-custom-skin/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ele-custom-skin/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ele-custom-skin/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [Tomek Tomczuk](https://wordpress.org/support/users/timovega/)
 * Last activity: [3 years, 9 months ago](https://wordpress.org/support/topic/referenceerror-elementordevtools-is-not-defined/#post-15942052)
 * Status: not resolved