0

我只想删除添加到购物车按钮文本,而不是按钮本身,因为我使用的是背景图像而不是文本。

我的意思是 view.phtml Page 中的(添加到购物车)按钮。

4

1 回答 1

0

“添加到购物车”文本不在 view.phtml 中。你需要去:

/app/design/frontend/base/default/template/catalog/product/view/addtocart.phtml

并找到下面的代码:

$buttonTitle = $this->__('Add To Cart');

将其更改为:

$buttonTitle = $this->__('');
于 2013-02-26T22:50:24.440 回答