1

私のマジェントストアには小さな問題があります。ゴールドという名前のページ タイトルを 1 つ作成します。このページにはn 個の製品が含まれています。顧客が製品をクリックした場合は、ページ タイトル名を製品名に変更します。

それを変更する可能性はありますか?私はphpでこの問題を解決しました。しかし、マジェントでは運がありません。

これが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);
?>

ありがとう

4

1 に答える 1

1

Magento では、次のようにページ タイトルを変更できます。

$headBlock = $this->getLayout()->getBlock('head');
$headBlock->setTitle($newtitle); //set title
$headBlock->setKeywords($keywords); //set keywords
$headBlock->setDescription($description); //set description
于 2013-04-24T18:53:02.440 に答える