crazypsycho
Forum Replies Created
-
Forum: Plugins
In reply to: [Dynamic Conditions] V 1.6.2 not working anymoreShould be fixed with 1.7.0
Forum: Plugins
In reply to: [Dynamic Conditions] Empty space when the field is unvisibleYou have a container with hidden widgets in it.
You want to hide this container if all widgets are hidden.
So you need to hide it with javascript.
Something like this:let $container = jQuery('.elementor-element-5180d98); // the class of the container
let $widgets = $container.find('.elementor-element');
if (!$widgets.length) {
$container.css({display: 'none'});
}Forum: Plugins
In reply to: [Dynamic Conditions] Is there a way to find where the plugin is used?When you are in the editor, you can see an icon in top right corner in a widget/section when a condition is activated.
With latest version the widgets/sections will have a dashed border.
For a global check you need to write a custom sql-query.
The data is saved in wp_postmeta under the meta_key ‘_elementor_data’
But the data is a json.Forum: Plugins
In reply to: [Dynamic Conditions] Problem with pluginWith v1.7.0 we added support for php 7.4 again.
Forum: Plugins
In reply to: [Dynamic Conditions] Why PHP warning??With v1.7.0 we added support for php 7.4 again.
Forum: Reviews
In reply to: [Dynamic Conditions] No Longer Works Due To PHP ErrorWith version 1.7.0 we added backward compatibility for php 7.4 for now. But we recommend to update to >8.0 as soon as possible.
Forum: Reviews
In reply to: [Dynamic Conditions] Forces you to upgrade to php 8? why?With version 1.7.0 we added backward compatibility for php 7.4 for now. But we recommend to update to >8.0 as soon as possible.
Forum: Plugins
In reply to: [Dynamic Conditions] ACF Image field shows as emptyShould be fixed with latest version
Forum: Plugins
In reply to: [Dynamic Conditions] Fatal Error after updateAre you sure you have PHP 8.0? Because WeakMap should exists since PHP 8.
Forum: Plugins
In reply to: [Dynamic Conditions] v1.5.1 stopped workingHello,
PHP 7.4 is end of life since november 2022. So we have decided to not longer support it and require php 8.x. in the last version.
Forum: Plugins
In reply to: [Dynamic Conditions] Dynamic Conditions not working on Elementor 3.21.0In new version 1.6.3 this issue is now fixed.
In new version 1.6.3 this issue is now fixed.
Forum: Plugins
In reply to: [Dynamic Conditions] DynamicConditons not working with Elementor 3.21.2I think you just have to disable the option “hide only content” in the dynamiccondions settings.
Forum: Plugins
In reply to: [Dynamic Conditions] DynamicConditons not working with Elementor 3.21.2Just go to /wp-admin/admin.php?page=elementor-settings#tab-experiments
and set Optimized Control Loading to inactive.Forum: Plugins
In reply to: [Dynamic Conditions] Broken condition validation on Elementor 3.21.0Someone founds out, that this issue occours when Optimized Control Loading in elementor-settings is enabled.
As quick-fix, just disable it. We will look what this option exactly does and if we can fix this problem.