Pergunta

I want to change how the address within book.phtml is displayed on frontend. In detail it is this part of code:

<h4><?php echo $this->__('Default Billing Address') ?></h4> <address> <?php echo $this->getPrimaryBillingAddressHtml() ?>
</address>

source code shows this:

<address> John Doe<br/> Company<br /> Street Address<br /> State, Province Zip Code<br/> Country<br/> T: 59874953847983<br /> </address>

I would like to have something like this:

<address> <div class="tagContainer"> <span class="oddTag">John Doe<br/></span> <span class="evenTag">Company<br /></span> <span class="oddTag">Street Address<br /></span> <span class="evenTag">State, Province Zip Code<br/></span> <span class="oddTag">Country<br/></span> <span class="evenTag">T: 59874953847983<br /></span> </div> </address>

In which file can I change that?

Nenhuma solução correta

Licenciado em: CC-BY-SA com atribuição
Não afiliado a magento.stackexchange
scroll top