0
4

2 回答 2

0

用于描述(或任何其他属性)

$attributes = $_product->getAttributes();
$description = $attributes['description']->getFrontend()->getValue($_product);
echo $description;
于 2013-05-27T04:31:33.637 回答
0

我只是一起破解了一些东西可能会更好地解决

<?php 

$links = $_helper->productAttribute($_product, $_product->getLinks(), 'links');
$array = explode('http://',$links);

foreach ($array as $link) {
 if (empty($link)) continue;
 echo "<a href='http://".$link."' target='_blank'>Link 1 - description</a><br>";
}

?>
于 2013-05-23T07:23:48.733 回答