如何在Drupal中为图像添加工具提示?使用自定义模板

发布于 2024-09-28 22:38:27 字数 799 浏览 5 评论 0原文

我正在使用 Drupal 6.x。这是我的 node-product.tpl.php 模板上的代码。我为产品创建了一个自定义 jquery 库。它工作得很好,但我只是缺少图像中的工具提示(大缩略图和小缩略图)。为了上传图像,我使用了名为 field_images 的 CCK 字段。当我上传图像时,我在那里输入图像标题。如何添加工具提示代码片段以使其正常工作?

<div class="product-large">
<img src="/sites/default/files/imagecache/360x280/<?php print $node->field_images[0]['filename']; ?>" />
</div>

<div class="product-small">
   <?php
           // get all images
            foreach ($node->field_images as $images) {
        ?>
   <img src="/sites/default/files/imagecache/120x90/<?php print $images['filename']; ?>" rel="/sites/default/files/imagecache/360x280/<?php print $images['filename']; ?>" />
    <?php   
        }
        ?>
</div>

非常感谢!

克里斯

I'm using Drupal 6.x. This is my code on my node-product.tpl.php template. I've created a custom jquery gallery for the products. It works great, but I'm just missing tool tips from my images (both large and small thumbnails). To upload images I'm using a CCK field named field_images. There I input the image titles when I upload the images. How can I add the tool tip code snippet to make it work?

<div class="product-large">
<img src="/sites/default/files/imagecache/360x280/<?php print $node->field_images[0]['filename']; ?>" />
</div>

<div class="product-small">
   <?php
           // get all images
            foreach ($node->field_images as $images) {
        ?>
   <img src="/sites/default/files/imagecache/120x90/<?php print $images['filename']; ?>" rel="/sites/default/files/imagecache/360x280/<?php print $images['filename']; ?>" />
    <?php   
        }
        ?>
</div>

Thanks much appreciated!

Chris

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

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

发布评论

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

评论(1

云裳 2024-10-05 22:38:27

“工具提示”是 title HTML 属性的结果。您需要将 title="foo" 添加到 img 标记中。

也许:
对于第二个图像,类似 $node->field_images[0]['data'] ['title'] 为第一个。

The "tooltip" is a result of the title HTML attribute. You'll want to add title="foo" to your img tag.

Perhaps:
<img src="/sites/default/files/imagecache/120x90/<?php print $images['filename']; ?>" rel="/sites/default/files/imagecache/360x280/<?php print $images['data']['filename']; ?>" title="<?php print $images['title']; ?>"/> for the second image and similarly $node->field_images[0]['data']['title'] for the first.

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