Thanks, @VikasB hidden.bs.modal The code snippet you provided requires Bootstrap, right? Unfortunately, due to the technical issues with our legacy custom skin code, I can't use Bootstrap in our project. But I can use Bulma instead. One thing I found that when you are using Bulma you can activate the modal by just adding the is-active modifier on the .modal container. The second thing is the Bulma does not include any JavaScript interaction. You will have to implement the class toggle by yourself if you need . So I tried to partially use the approach which was mentioned previously by @nehaSharma and wrote the following custom component: <#if user.anonymous>
<!-- Modal card custom styles-->
...some code...
<!-- Modal card end-->
</#if> Could I just pass the required Board IDs using FreeMarker only with no JS involved? Thank you so much for your help!
... View more