Hi @xalodile ,
Understood.
Please do not use nested dynamic tags in the attributes area.
It’s a bug, you can follow this link WIP: Dynamic data is not rendered on links titles for update.
As a workaround, please create a custom function to output the post slug.
Example:
function my_post_slug() {
$post = get_post( get_the_ID() );
if ( is_a( $post, 'WP_Post' ) ) {
return $post->post_name;
}
return '';
}
Then use {echo:my_post_slug}
Regards,
Jenn