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.
我想product_options从发票 PDF 中删除。我找到了设置项目的位置($this->_drawItem($item, $page, $order);在 Invoice.php (line148~) 中);我尝试更改product_options手动使用$item['product_options'] = "";,但这无法进行任何更改。
product_options
$this->_drawItem($item, $page, $order);
$item['product_options'] = "";
有没有办法做到这一点?我需要改变什么才能做到这一点?我只需要在 PDF 中更改它。
未经测试,而不是$item['product_options'] = "";尝试$item->setProductOptions('');
$item->setProductOptions('');
我最终将这一行从:更改if ($option['value']) {为:if ($option['']) {
if ($option['value']) {
if ($option['']) {