ARQUIVO PARA EDIÇÃO


:: billing.phtml
:: Recomendamos guardar a cópia original do arquivo billing.phtml
:: No respectivo tutorial ensinamos como identificar o caminho do arquivo billing.phtml com o Módulo de Compra em 1 Passo da IWD.
:: https://goo.gl/qvAMtf
:: No respectivo tutorial ensinamos como identificar o caminho do arquivo billing.phtml com o passo de fechamento nativo do Magento.
:: https://goo.gl/J34KD7

COMENTE O RESPECTIVO BLOCO DE CÓDIGO NO ARQUIVO CORRESPONDENTE PARA EDIÇÃO

<!-- LINHA PARA COMENTAR BLOCO EM PHP
<?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
<li class="wide">
<div class="input-box">
<input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="billing[street][]" id="billing:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
</div>
</li>
<?php endfor; ?>
FIM DA LINHA PARA COMENTAR BLOCO EM PHP -->


ABAIXO DO CÓDIGO ACIMA COMENTADO ADICIONE O RESPECTIVO BLOCO DE CÓDIGO

<li class="wide">
<div class="input-box">
<input type="text" title="Rua 3" name="billing[street][]" id="billing:street3" value="" class="input-text " />
</div>
</li>
<li class="wide">
<div class="input-box">
<input type="text" title="Rua 2" name="billing[street][]" id="billing:street2" value="" class="input-text " />
</div>
</li>