2015-10-19 50 views
0

是否可以將默認送貨地址下拉選擇放到標題中? 我需要有可能在每個頁面上設置默認送貨地址。
我的Magento ver 1.9Magento在標題中選擇客戶默認送貨地址

+0

是否要獲取當前登錄的客戶的默認送貨地址我是正確的? –

回答

0

這裏的實現。

在header.phtml中。下面的代碼

<div class="customer-shipping-address"> 
    <?php echo $this->getChildHtml('header_shipping'); ?> 
</div> 

拷貝在下面的代碼page.xml下副本 「報頭」 塊

<block type="checkout/onepage_shipping" name="page.header.shipping" as="header_shipping" template="page/html/shipping.phtml"/> 

的 「頁面/ HTML」 下創建shipping.phtml和寫下面的代碼。

<ul class="form-list"> 
    <?php if ($this->customerHasAddresses()): ?> 
     <li class="wide"> 
      <div class="input-box"> 
       <?php echo $this->getAddressesHtmlSelect('shipping') ?> 
      </div> 
     </li> 
    <?php endif ?> 
</ul> 
相關問題