1

嗨,谁能帮我在我的两个 Wordpress 页面中禁用或阻止 Aweber 表单弹出窗口。默认情况下,此代码是站点范围的并放在我的 footer.php 下。

<div class="AW-Form-306596914"></div>
<script type="text/javascript">(function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "//forms.aweber.com/form/14/306596914.js";
    fjs.parentNode.insertBefore(js, fjs);
    }(document, "script", "aweber-wjs-2vvzoocrg"));
</script>

我可以在页面上放一个 CCS 代码来禁用弹出窗口还是我需要编辑代码本身?

这是两个页面:

https://www.ataonline.edu.au/unlock-free-ebook-for-australia/
https://www.ataonline.edu.au/unlock-free-ebook-international/

我希望你能给我一些想法。提前致谢!

4

1 回答 1

1

添加这个条件

<?php if(!is_page('2870') && !is_page('2853')) { ?>

    <div class="AW-Form-306596914"></div>
    <script type="text/javascript">(function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//forms.aweber.com/form/14/306596914.js";
        fjs.parentNode.insertBefore(js, fjs);
        }(document, "script", "aweber-wjs-2vvzoocrg"));
    </script>

<?php } ?>
于 2018-07-16T07:01:51.207 回答