Hi,
Probably the last question.
In show_block_address.php i have removed:
if(!empty($this->options['display'])) {
but that didn't make a lot difference. It seems that:
$this->cart_addresses['data']
is empty while you are in guest information/email edition mode.
Is there a way not to hide address while editing guest information?
I also tried like this, which works in other checkout views but not in address, not sure why:
$this->cart_addresses = $this->checkoutHelper->getAddresses();
foreach($this->cart_addresses['data'] as $address) {
}
The idea is, insteed of hiding whole address block, i would like to add some kinda overlay while in guest information/email edition mode.
Thanks