在我的购物车页面中,我需要能够检查是否有任何已添加的产品设置了特定的自定义选项 - 在这种情况下是一个名为“age_guide”的自定义选项。
如果是这样,我需要添加一个小的免责声明文本行。我该怎么做呢?
答案 0 :(得分:0)
如果您在产品上设置的自定义选项为 age_guide ,则在
中template/checkout/cart/item/default.phtml
第46行
<?php echo $this->htmlEscape($_option['label']) ?>
使用以下代码:
<?php if($_option['label'] =='age_guide'): // or whatever your custom option label ?>
<div>
<span><?php echo $this->__('Your Disclaimer Text Goes Here');?></span>
</div>
<?php endif; ?>