让 Adsense 在 Concrete5 中显示时出现问题

发布于 2024-11-13 17:12:22 字数 848 浏览 2 评论 0原文

(我尝试了C5论坛和C5 IRC频道,但支持不太好)

这是关于Adsense的问题。

当我使用 Concrete5 的编辑模式时,我可以看到 Adsense 广告。

https://img.skitch.com/20110604-gshhqyej459hsw41jhwkqfc59m.jpg

当我退出编辑模式,它们是首页空白。

http://premierclinics.net/

但是,它们确实可以在子页面(例如产品页面)上运行。我不能使用超过 2 个超链接,因此您必须浏览到某个产品才能看到它。

我做过的事情:

  • 按照 Google 的建议等了 48 小时
  • 尝试了多个浏览器、多个操作系统、多台计算机
  • 清除缓存(深层)

我没有做过的事情:

  • 修改 Google 的Adsense 代码
  • 将所有 Adsense 插件添加到 Concrete5

这是一个基本安装。我只是添加了一个 HTML 块,并将直接从 Google 获取的代码粘贴到网站的 HTML 编辑器块中。该代码尚未被 Concrete5 篡改(据我所知——不应该)。

(I tried the C5 forums and the C5 IRC channel, but support is not too good)

Here is the problem regarding Adsense.

When I use Concrete5's Edit Mode, I can see the Adsense ads.

https://img.skitch.com/20110604-gshhqyej459hsw41jhwkqfc59m.jpg

When I Exit Edit Mode, they are blank for the front page.

http://premierclinics.net/

They do, however, work on a subpage, such as a product page. I cant use more than 2 hyperlinks, so you'd have to browse to a product to see it.

Things I have done:

  • Waited 48 hours, as per Google's recommendations
  • Tried multiple browsers, multiple OS', multiple computers
  • Cleared cache (deep)

Things I have not done:

  • Modify Google's Adsense code
  • Added any Adsense plugins to Concrete5

This is a basic installation. I have simply added a HTML block and pasted the code directly from Google in the HTML editor block of the website. The code has not been tampered with by Concrete5 (as far as I know -- it shouldn't).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十二 2024-11-20 17:12:22

您是否有机会将内容放在“isEditMode”条件之间?

<?php
global $c;
if ($c->isEditMode()) { 
   //Adsense code
}
?> 

如果是这样,请将其从那里取出:-)

Have you by any chance put the content in between the "isEditMode" condition?

<?php
global $c;
if ($c->isEditMode()) { 
   //Adsense code
}
?> 

If so take it out of there :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文