特定页面上的弹出窗口

大家好。

我有一段脚本,会在用户访问我的社区时弹出一个弹窗。

我知道通过将这段脚本放入 <head> 标签中可以实现该功能,但我不希望它在用户访问的任何页面上都出现。

本质上,我需要知道:是否可以在弹窗脚本之前或之后添加某些脚本,使弹窗仅在特定页面上显示?例如,某个特定主题页?

如果有,能否请人帮忙?

谢谢

Sure.

Edit your theme with /admin/customize/themes
Add your script like this:

    <script type="text/javascript">
        if(window.location.href === "https://your-forum.com/t/the-topic-target/12345") 
        {
           ... your script here ...
        }
    </script>

I use it, works like a charm :rocket:

Thanks for this!

Just a quick query, am I adding this to the Common CSS or in the head?