猿问

如何在 Magento 的产品标题中附加 sku。?

我想使用 php 代码在 Magento 的产品标题中附加 sku。任何人都可以请帮助我。


<?php 

//set empty title

$title = ''; 

if ($_product = Mage::registry('current_product')) 

$title = $_product->getName();

$pos = stripos($title);

$title = $this->getTitle();

}

?>

<title><?php echo $title; ?> | test</title>


饮歌长啸
浏览 57回答 1
1回答

繁花如伊

这是上述问题的工作代码。<?php&nbsp;//set empty title$title = '';&nbsp;if ($_product = Mage::registry('current_product'))&nbsp;{&nbsp;$title = $_product->getName();$sku = $_product->getSku();$pos = stripos($title, $sku);if($pos === false ){//no sku already - append now$title.= ' - ' . $sku;}}else{&nbsp;$title = $this->getTitle();}?><title><?php echo $title; ?> | test</title>
随时随地看视频慕课网APP
我要回答