0

我想根据 magento 上的属性值获取图像。

例子:

Attribute > MyAttribute
Values > Nasa, Google, Linux

Images > Nasa.jpg, Google.jpg, Linux.jpg

Products >

Product Nasa < Get Nasa.jpg if is selected an attribute
Product Google < Get Google.jpg if is selected an attribute
Product Linux < Get Linux.jpg if is selected an attribute

该脚本用于显示是否选择了是。

<?php if($_product->getMyAttribute()): ?>
<img src="/path/to/the/image.jpg">
<?php endif; ?>

我自己找到了解决方案。脚本下方。

<?php if ($_product->getAttributeText('myattribute') == "Text Inside"): ?> 
<div id="some"><img src="image.jpg"></div>
<?php endif; ?>
4

1 回答 1

1

Johann Reinke 的属性选项图像扩展应该完全符合您的要求。它甚至为管理员提供了一个管理 UI,以便能够维护图像。Johann 的扩展是免费的、开源的并且在 Guthub 上。

于 2012-11-18T04:18:37.020 回答