2013-02-18 68 views
1

我正在嘗試在magento網站的頁腳中找到鏈接,但我無法找到phtml文件。我發現,在page.xml塊代碼文件如何在頁腳中找到magento中的鏈接

<block type="page/template_links" name="footer_links" as="footer_links" after="footer.newsletter" template="page/template/links.phtml"/> 

但我無法找到該文件links.phtml文件,我檢查了當前模板

website/app/design/frontend/website.com/default/template/page/ 

,但我看不出有任何模板文件夾存在。

任何人都可以幫我請這個,如何找到該文件,我甚至嘗試打開模板路徑提示它沒有幫助。提前感謝您的幫助。

+0

你嘗試過** **添加一個'links.phtml' **的**'應用程序/設計/前端/ website.com/defaul註釋掉塊T /模板/頁/'?它可能只是恢復到默認/默認是我的猜測,因爲它不存在。 – Zak 2013-02-18 22:58:07

+0

nope我找不到它在默認/默認也是,並且鏈接已經在那裏我只需要找到它並改變它的東西就可以了 – jarus 2013-02-18 23:09:50

回答

0

試試這個路徑:

/app/design/frontend/base/default/template/page/template 

希望幫助你...

1

它可以是混亂,頁腳鏈接我的Magento兩種方式之一生成:

1 )通過XML佈局添加,這是如何添加站點地圖鏈接等,例如:

contacts.xml

<reference name="footer_links"> 
    <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled"> 
      <label>Contact Us</label> 
      <url>contacts</url> 
      <title>Contact Us</title> 
      <prepare>true</prepare></action> 
</reference> 

您可以添加更多類似這樣的,或註釋掉刪除

他們正在使用的是啓用了一個標準的模板文件(模板/網頁/模板/ links.phtml)生成的每個環節配置如下。上面的每個鏈接定義(在不同的XML配置中有多個)將使用下面的模板來顯示實際的HTML鏈接。

page.xml

<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml"> 
    <!-- uncomment this to ditech them.. --> 
    <block type="page/template_links" 
      name="footer_links" as="footer_links" 
      template="page/template/links.phtml" /> 
</block> 

2)你會發現一個名爲footer_links靜態塊,還包括一些鏈接,這是爲了讓您更容易添加自己的鏈接。他們在裏面

cms.xml

<reference name="footer"> 
    <block type="cms/block" name="cms_footer_links" before="footer_links"> 
     <!-- 
     The content of this block is taken from the database by its block_id. 
     You can manage it in admin CMS -> Static Blocks 
     --> 
     <action method="setBlockId"><block_id>footer_links</block_id></action> 
    </block> 
</reference> 

兩種方法用於產生可能會造成混淆:)

0

從頁腳鏈接中刪除「命令,並返回」頁腳鏈接啓用我從sales.xml文件

<!-- <default> 
     <reference name = "footer_links"> 
     <block type="sales/guest_links" name="return_link"/> 
     <action method="addlinkBlock"> 
     <blockName>return_link</blockName> 
     </action> 
     </reference> 
     </default> 
    --> 
相關問題