在类别中,我们将子类别作为缩略图。在角落里,我想显示这个子类别的最大百分比折扣。 要选择最佳百分比的脚本,它会在类别概览中显示 今天我想做,但我无法进入类别内的一些数据。
<?php
$_Percent = 100 - round(($_product->getFinalPrice()) / $_product->getPrice() *100);
$arrTest = array($_Percent);
$array[] = $_Percent;
$var = (max(($array)));
$_SESSION['globalprice'.$currentCategoryId.''] = $var;
?>
此代码放在文件list.phtml
中,但仅在我打开子类别时才有效。但view.phtml
显示类别视图无效。
<?php $_collectionSize = $_productCollection->count() ?>
<?php $_columnCount = $this->getColumnCount(); ?>
<ul class="products-grid products-grid--max-4-col">
<?php $i=0; foreach ($_productCollection as $_product): ?>
<?php
$_Percent = 100 - round(($_product->getFinalPrice()) / $_product->getPrice() *100);
$arrTest = array($_Percent);
$array[] = $_Percent;
$var = (max(($array)));
$_SESSION['globalprice'.$currentCategoryId.''] = $var;
?>
此代码放在文件list.phtml
中,但仅在我打开子类别时才有效。但view.phtml
显示类别视图无效。多数民众赞成清楚,因为我通过会话进行测试但是当我尝试创建相同的代码时,我无法从类别视图访问摘要产品值。