特定のページでのポップアップ

こんにちは、皆さん。

コミュニティにユーザーがアクセスしたときにポップアップを表示するスクリプトを持っています。

このスクリプトを タグ内に追加することで動作することはわかっていますが、ユーザーが訪れるすべてのページに表示させたくありません。

つまり、ポップアップを特定のページ(例えば、特定のトピック)でのみ表示させるために、ポップアップスクリプトの前後に追加できるスクリプトはあるでしょうか?

もしあるなら、どなたかお手伝いいただけますか?

ありがとうございます

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?