ztarven
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Dynamic Conditions] hook 3.5 outdatedI’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 ); }
Thanks for your response!
The error I get isPOST https://mywebsite.com/wordpress/wp-admin/admin.php?page=metaslider&id=82 403 (Forbidden) load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,underscore,shortcode,backbone,wp-u…:5
Yep. This is very strange. When I have
<a></a>
tags in there it won’t save or even preview. However I tried putting<div></div>
tags in the captions and it works fine.
Viewing 4 replies - 1 through 4 (of 4 total)