Title: dstapler's Replies | WordPress.org

---

# dstapler

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HT Easy GA4 - Google Analytics WordPress Plugin] Disable: Complete Your Google Ads Setup](https://wordpress.org/support/topic/disable-complete-your-google-ads-setup/)
 *  Thread Starter [dstapler](https://wordpress.org/support/users/dstapler/)
 * (@dstapler)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/disable-complete-your-google-ads-setup/#post-18830142)
 * Thank you for adding that option.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Undefined property: Elementor\Editor::$notice_bar](https://wordpress.org/support/topic/undefined-property-elementoreditornotice_bar/)
 *  [dstapler](https://wordpress.org/support/users/dstapler/)
 * (@dstapler)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/undefined-property-elementoreditornotice_bar/#post-11693432)
 * I was seeing this problem also. I just commented out the lines in plugin.php 
   and my site started working again. Not perfect, but got the site up again.
 *     ```
                       /** TODO: BC for Elementor v2.6.0 */
       //              if ( $elementor->editor->notice_bar ) {
       //                      $elementor->editor->notice_bar = new Notice_Bar();
       //              }
       ```
   
 * Edit:
    Better solution from the github thread is to add an isset() to the if 
   statement.
 *     ```
                       /** TODO: BC for Elementor v2.6.0 */
                       if ( isset( $elementor->editor->notice_bar ) ) {
                               $elementor->editor->notice_bar = new Notice_Bar();
                       }
       ```
   
    -  This reply was modified 6 years, 11 months ago by [dstapler](https://wordpress.org/support/users/dstapler/).

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