我正在尝试将规范标签添加到Magento中的特定页面。这已被充分记录,并且在最近添加的magento中相当简单,因为它们受到支持。但是,我们运行了一个旧版本的Magento,它没有内置。
我发现许多说明大多数要求您将其添加到页面更新布局。
<reference name="head">
<action method="addLinkRel">
<rel>canonical</rel>
<href>http://www.AddYourUrlHere.com/</href>
</action>
</reference>
然而,这导致和错误(我认为由于magento的版本)并且页面无法加载。我确信有一种方法可以添加它们,并且已经暗示要查看head.phtml文件。
任何人都可以对此有所了解并帮助我找到Magento 1.3.2的修复程序。
我知道在PHP中编写了一些代码,但就此而言,如果有任何答案被解释为好像我是个白痴,那么它会被解释:)
谢谢!
Invalid method Mage_Page_Block_Html_Head::addLinkRel(Array
(
[0] => canonical
[1] => http://www.AddYourUrlHere.com/
)
)
Trace:
#0 [internal function]: Varien_Object->__call('addLinkRel', Array)
#1 [internal function]: Mage_Page_Block_Html_Head->addLinkRel('canonical', 'http://www.AddY...')
#2 /home/atpinst/public_html/app/code/core/Mage/Core/Model/Layout.php(338): call_user_func_array(Array, Array)
#3 /home/atpinst/public_html/app/code/core/Mage/Core/Model/Layout.php(204): Mage_Core_Model_Layout->_generateAction(Object(Mage_Core_Model_Layout_Element), Object(Mage_Core_Model_Layout_Element))
#4 /home/atpinst/public_html/app/code/core/Mage/Core/Model/Layout.php(200): Mage_Core_Model_Layout->generateBlocks(Object(Mage_Core_Model_Layout_Element))
#5 /home/atpinst/public_html/app/code/core/Mage/Core/Controller/Varien/Action.php(303): Mage_Core_Model_Layout->generateBlocks()
#6 /home/atpinst/public_html/app/code/core/Mage/Cms/Helper/Page.php(85): Mage_Core_Controller_Varien_Action->generateLayoutBlocks()
#7 /home/atpinst/public_html/app/code/core/Mage/Cms/controllers/PageController.php(45): Mage_Cms_Helper_Page->renderPage(Object(Mage_Cms_PageController), '69')
#8 /home/atpinst/public_html/app/code/core/Mage/Core/Controller/Varien/Action.php(376): Mage_Cms_PageController->viewAction()
#9 /home/atpinst/public_html/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(248): Mage_Core_Controller_Varien_Action->dispatch('view')
#10 /home/atpinst/public_html/app/code/core/Mage/Core/Controller/Varien/Front.php(158): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#11 /home/atpinst/public_html/app/Mage.php(459): Mage_Core_Controller_Varien_Front->dispatch()
#12 /home/atpinst/public_html/index.php(67): Mage::run()
#13 {main}