在我的magento商店有一个小问题。我创建了一个名为黄金的页面标题。在此页面中包含n 个产品。如果客户单击产品,则将页面标题名称更改为产品名称。
有没有可能改变它。我在 php.ini 中解决了这个问题。但是在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);
?>
谢谢