I am now using the dynamic tags feature from Master Addon and have created some custom field by ACF to build a template page for client’s further update. However I cannot find any of those tags when I tried to add a dynamic tag to the image. There is no “post custom field” option that I can choose the tag of ACF like in title or text editor section.
May I ask if there is any solution to add a custom ACF image dynamic tag?
Thank you very much.
]]>I solved the issue of displaying the dynamic tag in the image of the Elementor Pro component using only one directive within the plugin code
“dynamic” => [“active” => true],
Simply access the file [garden-gnome-package/include/elementor_widget.php] And add this snippet: “dynamic” => [“active” => true],
inside the block example:
$this->add_control(
‘image’,
[
‘label’ => __( ‘Choose Garden Gnome Package’, ‘ggpkg’ ),
‘type’ => Controls_Manager::MEDIA,
‘default’ => [
‘url’ => Utils::get_placeholder_image_src(),
],
“dynamic” => [“active” => true],
]
);
This plugin dynamically hides and shows things: https://crocoblock.com/plugins/jetengine/dynamic-visibility/
It uses Elementor’s Dynamic Tags:
https://developers.elementor.com/docs/dynamic-tags/
If your plugin provided a Shortcode or better yet a record like Dynamic Tag it would be 100% compatible, can you take a look at that?
]]>What I want to do is to create a dynamic tag that will do the following:
When a post is created with a featured image, I want to use that image.
I want to create this using a custom plugin.
I found a YouTube video here that covers a lil bit, but it’s not exactly going to provide me with a solution since it covers a simple example that isn’t addressing my need:
https://www.youtube.com/watch?v=8KFT81t_2qo
Elementor provides something here as well:
]]>