6

我有 2 个自定义属性要添加到<title>产品页面上的标签中。它们是“品牌”和“字幕”。

我的页面标题最终会是这样的:

$brand." ".$productname." ".$subtitle;

我怎样才能做到这一点?

非常感谢您的帮助。

4

5 回答 5

22

根据您的问题,我假设您指的是更改产品的元标题。

有 3 个选项可供您选择:

  1. 浏览每个产品并单独手动更新(或使用电子表格并导入)每个产品元标题。编辑产品时,这些值在管理区域中可用。
  2. 重写 Mage_Catalog_Block_Product_View 并覆盖生成此标签的 _prepareLayout() 方法。
  3. 使用观察者并挂钩到 catalog_controller_product_view 事件。

您的决定实际上是在选项 2 和 3 之间(这两个选项都需要您创建一个自定义模块来实现)。

在扩展 Magento 核心功能时,我总是尽量不引人注目——所以我会在这里选择选项 3。请参阅下面的代码以获取完整示例:

应用程序/etc/modules/Yourcompany_Yourmodule.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Yourcompany_Yourmodule>
            <active>true</active>
            <codePool>local</codePool>
        </Yourcompany_Yourmodule>
    </modules>
</config>

app/code/local/Yourcompany/Yourmodule/etc/config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Yourcompany_Yourmodule>
            <version>1.0.0</version>
        </Yourcompany_Yourmodule>
    </modules>
    <global>
        <models>
            <yourmodule>
                <class>Yourcompany_Yourmodule_Model</class>
            </yourmodule>
        </models>
    </global>
    <frontend>
        <events>
            <catalog_controller_product_view>
                <observers>
                    <yourmodule>
                        <class>Yourcompany_Yourmodule_Model_Observer</class>
                        <method>catalog_controller_product_view</method>
                    </yourmodule>
                </observers>
            </catalog_controller_product_view>
        </events>
    </frontend>
</config>

app/code/local/Yourcompany/Yourmodule/Model/Observer.php

<?php

class Yourcompany_Yourmodule_Model_Observer
{
    /**
     * Change product meta title on product view
     *
     * @pram Varien_Event_Observer $observer
     * @return Yourcompany_Yourmodule_Model_Observer
     */
    public function catalog_controller_product_view(Varien_Event_Observer $observer)
    {
        if ($product = $observer->getEvent()->getProduct()) {
            $title = $product->getData('brand') . ' ' . $product->getData('name') . ' ' . $product->getData('sub_title');
            $product->setMetaTitle($title);
        }
        return $this;
    }
}
于 2012-06-03T11:43:07.473 回答
5

这是在magento中覆盖产品页面的元逻辑的最简单和最好的方法

复制/app/code/core/Mage/Catalog/Block/Product/View.php/app/code/local/Mage/Catalog/Block/Product

并覆盖函数 _prepareLayout(),我的例子如下

protected function _prepareLayout()
{
    $this->getLayout()->createBlock('catalog/breadcrumbs');
    $headBlock = $this->getLayout()->getBlock('head');

    if ($headBlock) {
        $product = $this->getProduct();
        $title = $product->getMetaTitle();

        // SEO values start
        $categoryCollection = $product->getCategoryCollection();
        foreach ($categoryCollection as $k) {
            $topCategory = Mage::getModel('catalog/category')->load($k->getId());
            break;
        }
        $brand = $product->getResource()->getAttribute('brand')->getFrontend()->getValue($product);
        $shortDescription = $product->getShortDescription();
        $suffix = Mage::getStoreConfig('design/head/title_suffix');
        // SEO values end

        if (!$title) {
            $title = $product->getName() .' '.$brand. ' - '. $topCategory->getName() . $suffix;
        }


        $headBlock->setTitle($title);

        $keyword = $product->getMetaKeyword();
        $currentCategory = Mage::registry('current_category');
        if ($keyword) {
            $headBlock->setKeywords($keyword);
        } elseif($currentCategory) {
            $headBlock->setKeywords($product->getName());
        }

        $description = $product->getMetaDescription();
        if (!$description) {
            $description = $brand. ' '. $topCategory->getName() .'. '. $shortDescription;
        }
        $headBlock->setDescription( ($description) );


        // var_dump($title);
        // var_dump($description);


        if ($this->helper('catalog/product')->canUseCanonicalTag()) {
            $params = array('_ignore_category'=>true);
            $headBlock->addLinkRel('canonical', $product->getUrlModel()->getUrl($product, $params));
        }
    }

    return parent::_prepareLayout();
}
于 2014-01-22T12:36:26.393 回答
1

假设您只想更改目录视图页面上的产品标题

在 app/design/frontend/default/{your theme Folder}/template/page/html/head.phtml 你可以

<?php if ($_product = Mage::registry('current_product')) { ?>
    <title><?php echo $_product->getData('xyz') . ' ' . $_product->getName(); ?></title>
<?php }else{ ?>
     <title><?php echo $this->getTitle() ?></title>
<?php } ?>

请参阅获取属性名称和值 Magento

于 2013-01-28T21:12:32.493 回答
1

这是德鲁·亨特回答的补充

magento 将类别名称包含在标题中,因此正确的解决方案是:

class Yourcompany_Yourmodule_Model_Observer
{
    /**
     * Change product meta title on product view
     *
     * @pram Varien_Event_Observer $observer
     * @return Yourcompany_Yourmodule_Model_Observer
     */
    public function catalog_controller_product_view(Varien_Event_Observer $observer)
    {
        if ($product = $observer->getEvent()->getProduct()) {
            if ($category) {
                $title = $brand . ' ' . $product->getData('name') . ' - ' . $product->getData('category')->getData('name');
            } else {
                $title = $brand . ' ' . $product->getData('name');
            }
            $product->setMetaTitle($title);
        }
        return $this;
    }
}
于 2012-06-16T11:34:44.373 回答
0

我相信 Drew Hunter 提供了大部分正确答案,但我必须进行一些更改才能使其正常工作(EE,1.14.2.x):

在 config.xml 中:

将节点更改<yourmodule>...</yourmodule>为 ><yourcompany_yourmodule>...</yourcompany_yourmodule>

在 Observer.php 中:

更改public function catalog_controller_product_view(Varien_Event_Observer $observer)public function catalog_controller_product_view($observer)

于 2016-08-25T14:11:54.773 回答