开发者

Magento - Email Shipment = Default

开发者 https://www.devze.com 2023-01-19 22:51 出处:网络
Whe开发者_如何转开发n creating a shipment in Magento there is a checkbox which allows you to \"email a copy of the shipment\".

Whe开发者_如何转开发n creating a shipment in Magento there is a checkbox which allows you to "email a copy of the shipment".

By default this is unchecked. Does anyone know which file I need to edit to set this 'checked' by default?


It is a app/design/adminhtml/default/default/template/sales/order/shipment/create/items.phtml

You can fin there the following lines:

<p>
    <label class="normal" for="send_email"><?php echo Mage::helper('sales')->__('Email Copy of Shipment') ?></label>
    <input id="send_email" name="shipment[send_email]" value="1" type="checkbox" checked="checked"/>
</p>
0

精彩评论

暂无评论...
验证码 换一张
取 消