我正在使用magento CE 1.8开发一个网站。我有一些产品有撇号(')在他们的名字中签名,如ABC的。问题是,当我点击添加到购物车按钮时,我无法将这些特定产品添加到购物车中,因为没有发生任何事情。 有没有解决这个问题的方法,因为当我搜索谷歌时,我找不到一个。 非常感谢提前。
答案 0 :(得分:0)
如果是单引号(即不是撇号),请尝试转义'
字符:\'
。
答案 1 :(得分:0)
您需要使用:
echo $this->escapeHtml($_product->getName());
或
$_helper = Mage::helper('catalog/output');
echo $_helper->productAttribute($_product, $_product->getName(), 'name'); ?>