如何在magento中将页面标题名称更改为产品名称?

时间:2013-04-24 10:28:44

标签: magento

在我的magento商店有一个小问题。我创建了一个名为gold的页面标题。在此页面中包含 n个产品。如果客户单击产品,则将页面标题名称更改为产品名称

有没有可能改变它。我在php中解决了这个问题。但是在magento没有运气。

这是php代码。

<?php
ob_start (); // Buffer output
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
<title>Test</title>
</head>

<body>
<?php
$pageTitle = 'New Test'; // Call this in your pages' files to define the page title
?>
</body>
</html>
<?php
$pageContents = ob_get_contents (); // Get all the page's HTML into a string
ob_end_clean (); // Wipe the buffer

// Replace <!--TITLE--> with $pageTitle variable contents, and print the HTML
echo str_replace ('Test', $pageTitle, $pageContents);
?>

由于

1 个答案:

答案 0 :(得分:1)

在Magento中,您可以像这样更改页面标题:

$headBlock = $this->getLayout()->getBlock('head');
$headBlock->setTitle($newtitle); //set title
$headBlock->setKeywords($keywords); //set keywords
$headBlock->setDescription($description); //set description