• Resolved cpepegrano

    (@cpepegrano)


    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 to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m also receiving this warning. I can confirm it’s caused by Dynamic Conditions.

    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.

    /**
     * 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 1 year, 10 months ago by ztarven.
    • This reply was modified 1 year, 10 months ago by ztarven.
    Plugin Author crazypsycho

    (@crazypsycho)

    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.