2012-05-08 83 views
0

我已經爲每個客戶上傳了不同的2個徽標,登錄後需要在magento目錄上顯示自己的徽標 - 這可能嗎?徽標必須在客戶登錄時從media/avatar/dummy.jpg中獲取。在magento會話上顯示徽標

目前我在header.phtml文件,任何建議

<?php if ($this->getIsHomePage()):?> 
    <h1 class="logo"> 
     <strong><?php echo $this->getLogoAlt() ?></strong> 
     <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"> 
      <img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /> 
     </a> 
    </h1> 
<?php else:?> 
+0

我在等,請幫幫我 –

回答

0

如果有自定義標識的管理數量 - 也就是幾個,甚至幾百個 - 我建議使用的客戶羣體。分配每個客戶到他們自己的組,然後在您的標題代碼中,您可以使用Mage::getSingleton('customer/session')->getCustomerGroupId();獲取當前客戶的組ID。

然後,您可以基於返回的組ID,根據您認爲合適的方式修改您的徽標URL。