标签: php magento
有些产品有可下载的PDF,有些则没有。当PDF丢失时,这就导致了404。我认为最好的选择是添加yes / no-product属性并在view.phtml中插入一个php if-condition,首先查找属性设置。我到目前为止尝试过:
<?php if ($_product->getpdf()) ?> <a href=............ </a> <?php endif ?>
但它没有用。如何插入这样的“条件片段”?