Drupal 输出图像标签作为图像包装器的标题和 alt

发布于 2024-10-07 11:58:29 字数 766 浏览 1 评论 0原文

我“继承”的 Drupal 6 项目发生了一些非常奇怪的事情。

在一些视图中,有一堆缩略图,每个缩略图都包含在锚标记中。

这就是奇怪的地方。

该包装器锚点的 title 和 alt 属性等于图像标签。

在下面的屏幕截图中,我将鼠标悬停在目录和目录上。小册子缩略图:

http://files.droplr.com/files/42950815/yuRq .hover.jpg

我也截图了源代码:

http://files.droplr.com/files/42950815/Sxy0.sauce.jpg

我在视图中找不到任何会产生此问题的内容:

http://files.droplr.com/files/42950815/v9U8.view.jpg

但话又说回来,我对于 Drupal 来说非常生疏。

有谁知道为什么会发生这种情况以及我在哪里可以找到负责此输出的代码?

Something really weird is going on with a Drupal 6 project I've "inherited".

In a few of the views it there's a bunch of thumbnails and each one of these thumbnails is wrapped in an anchor tag.

Here's where it gets weird.

The title and alt attributes of that wrapper anchor are equal to the image tag.

In the Screenshot below, I am hovering over the Catalogs & Booklets thumbnail:

http://files.droplr.com/files/42950815/yuRq.hover.jpg

I took a screenshot of the source code too:

http://files.droplr.com/files/42950815/Sxy0.sauce.jpg

I can't find anything in the view that would create this problem:

http://files.droplr.com/files/42950815/v9U8.view.jpg

But then again, I'm extremely rusty when it comes to Drupal.

Does anyone have an idea why this could be happening and where I could find the code responsible for this output?

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

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

发布评论

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

评论(1

蓝礼 2024-10-14 11:58:29

第一个赌注是看一下主题,我几乎可以肯定,导致此问题的原因是以下一个或多个:

  • 自定义视图模板文件
  • 视图的预处理函数,例如 themename_preprocess_views_view_fields
  • 主题函数覆盖。

所有这些都发生在视图模板文件中,您可以检查视图的主题信息以找出使用了哪些模板,或者主题的 template.php 文件。

First bet is to take a look at theme, I'm almost certain that what's causing this is one or more of:

  • Custom views template file
  • Preprocess function for the view, like themename_preprocess_views_view_fields
  • Theme function override.

All of this happens in a view template file, you can check the view's theme information to find out which templates are used, or the theme's template.php file.

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