只需将这段代码添加到您的
app/design/frontend/default/[template_NAME]/template/catalog/product/view.phtml 文件我已经为宽度和高度添加了两个新字段就像这样
<label for="height"><?php echo "Height" ?></label>
<input type="text" name="height" id="height" maxlength="30" value="1" title="<?php echo 'Height' ?>" class="input-text" />
<label for="width"><?php echo "Width" ?></label>
<input type="text" name="width" id="width" maxlength="30" value="1" title="<?php echo 'Width' ?>" class="input-text" />
还要添加这些php代码
<?php $br_special_price = $_product->getSpecialPrice();
$br_old_price = $_product->getPrice();
$an_id = $_product->getId();
$special_priceID="product-price-".$an_id;
$old_priceID="old-price-".$an_id;
?>
文件末尾还有这个脚本
<script type="text/javascript">
var mq= 0;
function respondToChange(event) {
mq= Math.ceil($('width').getValue() * $('height').getValue() * <?php echo $br_special_price;?> );
document.getElementById('<?php echo $special_priceID; ?>').innerHTML = '£ '+mq;
mq1= Math.ceil($('width').getValue() * $('height').getValue() * <?php echo $br_old_price;?>);
document.getElementById('<?php echo $old_priceID; ?>').innerHTML = '£ '+mq1;
}
$('width').observe('change', respondToChange);
$('height').observe('change', respondToChange);
</script>
这段代码有问题。您可以获得所有产品页面中反映的价格。但是您不能将这些更新的特价商品传递到购物车。旧值将反映在购物车中。希望有人更新此代码。