Magento - 显示属性管理员标题

发布于 2024-10-15 09:20:16 字数 669 浏览 0 评论 0原文

如何修改以下代码块,使其显示“植物属”而不是文本“[隐藏]”

相关代码位于: \app\design\frontend\enterprise\style\template\catalog\layer\view.phtml

<?php $_filters = $this->getFilters() ?>
                <?php foreach ($_filters as $_filter): ?>
                <?php if($_filter->getItemsCount()): ?>
                    <dt><?php echo $this->__($_filter->getName()) ?></dt>
                    <dd><?php echo $_filter->getHtml() ?></dd>
                <?php endif; ?>
                <?php endforeach; ?> 

这是管理面板中的属性: 管理视图

How do I modify the following code block so that it will display ‘Plant Genus’ instead of the text ‘[hide]’

The relevant code is at:
\app\design\frontend\enterprise\style\template\catalog\layer\view.phtml

<?php $_filters = $this->getFilters() ?>
                <?php foreach ($_filters as $_filter): ?>
                <?php if($_filter->getItemsCount()): ?>
                    <dt><?php echo $this->__($_filter->getName()) ?></dt>
                    <dd><?php echo $_filter->getHtml() ?></dd>
                <?php endif; ?>
                <?php endforeach; ?> 

Here is the attribute from the admin panel:
admin view

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

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

发布评论

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

评论(1

因为看清所以看轻 2024-10-22 09:20:16

@Lucasnus - 我不认为这是在前端,但他已经将属性放置在屏幕截图中供我们查看,他引用的代码来自前端视图。

不过,我认为您已经非常接近解决方案了,因为这看起来像是商店属性可见性问题。

在管理面板中,如果您更改为“Garden Store”范围,您可以尝试将属性值更改为“Plant Genus”吗?

如果这不起作用,也许可以尝试主网站范围。

其他产品属性是否也有此问题?

@Lucasnus - I dont think this is in the front end, but he has placed the attribute for us to see in a screen shot, the code he quoted is from the front end view.

However I think you are quite close to a solution, since this looks like a store attribute visibility issue.

In the admin panel if you change to the "Garden Store" scope, can you try to then change the attribute value to "Plant Genus" ?

If that does not work, maybe try the Main Website scope.

Do you have this problem with other products attributes?

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