Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的magento有问题。我想回显一些属性,它工作正常,但为什么这个返回数字而不是文本?例如它返回数字 7,但我希望文本已售罄。
<?php print $_product->getCustomStockStatus(); ?>
尝试
echo $_product->getAttributeText('custom_stock_status');