Title: hook 3.5 outdated
Last modified: January 12, 2023

---

# hook 3.5 outdated

 *  Resolved [cpepegrano](https://wordpress.org/support/users/cpepegrano/)
 * (@cpepegrano)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/hook-3-5-outdated/)
 * On my page it tells me that Version is outdated. I deactived the plugin and the
   notice disappears. Any idea what to do?
 * Problem is: the page was built by my cousin who passed away in november and I
   do not know where and for what he used your plugin 🙁
 * Error says:
 * Deprecated: Der Hook elementor/dynamic_tags/register_tags ist seit Version 3.5.0
   veraltet! Verwende stattdessen elementor/dynamic_tags/register. in /kunden/314480_10117/
   webseiten/pd-kasermandl-tirol/wordpress/wordpress/wp-includes/functions.php on
   line 5758 
    Deprecated: Die Funktion Elementor\Core\DynamicTags\Manager::register_tag
   ist seit Version 3.5.0 veraltet! Verwende stattdessen register. in /kunden/314480_10117/
   webseiten/pd-kasermandl-tirol/wordpress/wordpress/wp-includes/functions.php on
   line 5383
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhook-3-5-outdated%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [ztarven](https://wordpress.org/support/users/ztarven/)
 * (@ztarven)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/hook-3-5-outdated/#post-16386370)
 * I’m also receiving this warning. I can confirm it’s caused by Dynamic Conditions.
 *     ```wp-block-code
       Deprecated: Hook elementor/dynamic_tags/register_tags is deprecated since version 3.5.0! Use elementor/dynamic_tags/register instead. in /var/www/html2/wp-includes/functions.php on line 5758
   
       Deprecated: Function Elementor\Core\DynamicTags\Manager::register_tag is deprecated since version 3.5.0! Use register instead. in /var/www/html2/wp-includes/functions.php on line 5383
       ```
   
 * Update: I fixed the issue by updating /Lib/DynamicConditions.php. See below.
 *     ```wp-block-code
       /**
        * Register all of the hooks related to the elementor-facing functionality
        * of the plugin.
        *
        * @since    1.2.0
        * @access   private
        */
       private function defineElementorHooks() {
           // $this->loader->addAction( 'elementor/dynamic_tags/register_tags', $this, 'registerDynamicTags', 10, 1 );
           $this->loader->addAction( 'elementor/dynamic_tags/register', $this, 'registerDynamicTags', 10, 1 );
           $this->loader->addAction( 'wp_footer', $this, 'setFooterStyleForPreview', 10, 0 );
       }
   
       /**
        * Register some useful dynamic tags
        *
        * @since 1.2.0
        * @param $dynamicTags
        */
       public function registerDynamicTags( $dynamicTags ) {
           // $dynamicTags->register_tag( NumberPostsTag::class );
         $dynamicTags->register(new NumberPostsTag );
       }
       ```
   
    -  This reply was modified 3 years, 4 months ago by [ztarven](https://wordpress.org/support/users/ztarven/).
    -  This reply was modified 3 years, 4 months ago by [ztarven](https://wordpress.org/support/users/ztarven/).
 *  Plugin Author [crazypsycho](https://wordpress.org/support/users/crazypsycho/)
 * (@crazypsycho)
 * [2 years, 12 months ago](https://wordpress.org/support/topic/hook-3-5-outdated/#post-16788105)
 * Hello,
 * this is fixed with 1.6.1

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

The topic ‘hook 3.5 outdated’ is closed to new replies.

 * ![](https://ps.w.org/dynamicconditions/assets/icon-256x256.jpg?rev=1969812)
 * [Dynamic Conditions](https://wordpress.org/plugins/dynamicconditions/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/dynamicconditions/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/dynamicconditions/)
 * [Active Topics](https://wordpress.org/support/plugin/dynamicconditions/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dynamicconditions/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dynamicconditions/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [crazypsycho](https://wordpress.org/support/users/crazypsycho/)
 * Last activity: [2 years, 12 months ago](https://wordpress.org/support/topic/hook-3-5-outdated/#post-16788105)
 * Status: resolved