我正在开发2.2版本的OpenChart(OC),我是OC的新手,我想在类别页面和特色产品部分添加数量框。
所以我试图复制这段代码
theme/default/template/product/product.tpl
,因为我希望OC在产品页面中应用相同的结果。
<label class="control-label" for="input-quantity"><?php echo $entry_qty; ?></label>
<input type="text" name="quantity" value="<?php echo $minimum; ?>" size="2" id="input-quantity" class="form-control" />
<input type="hidden" name="product_id" value="<?php echo $product_id; ?>" />
并尝试将其粘贴到价格低于theme/default/template/product/category.tpl
的页面中,但收到错误Undefined variable
。
从R&amp; D我知道我必须在catalog/controller/category.tpl
页面更新它。我不知道该怎么办。
请帮帮我。非常感谢。
答案 0 :(得分:2)
您将在
中替换以下更改category.tpl
用以下代码替换代码
<div class="image"><a href="<?php echo $product['href']; ?>" id="location-<?php echo $product['product_id']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" class="img-responsive" /></a></div>
在&#39; div class =&#34; button-group&#34;&gt;&#39;
之前添加以下代码<div class="form-group">
<label class="control-label" for="input-quantity">Qty</label>
<input type="text" name="quantity" value="<?php echo $product['minimum']; ?>" size="2" id="input-quantity-<?php echo $product['product_id']; ?>" class="form-control" />
</div>
更改以下代码
<button type="button" onclick="cart.add('<?php echo $product['product_id']; ?>', '<?php echo $product['minimum']; ?>');"><i class="fa fa-shopping-cart"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $button_cart; ?></span></button>
以下
<button type="button" onclick="addTocart('<?php echo $product['product_id']; ?>')"><i class="fa fa-shopping-cart"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $button_cart; ?></span></button>
在
之前添加Javascript<script type="text/javascript">
function addTocart(product_id){
var product_id = product_id;
var qty = $('#input-quantity-'+product_id).val();
var location = $('#location-'+product_id).attr('href');
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id='+product_id+'&quantity='+qty,
dataType: 'json',
beforeSend: function() {
$('#button-cart').button('loading');
},
complete: function() {
$('#button-cart').button('reset');
},
success: function(json) {
$('.alert, .text-danger').remove();
$('.form-group').removeClass('has-error');
if (json['error']) {
if (json['error']['option']) {
window.location = location;
}
if (json['error']['recurring']) {
window.location = location;
}
// Highlight any found errors
$('.text-danger').parent().addClass('has-error');
}
if (json['success']) {
$('.breadcrumb').after('<div class="alert alert-success">' + json['success'] + '<button type="button" class="close" data-dismiss="alert">×</button></div>');
$('#cart > button').html('<i class="fa fa-shopping-cart"></i> ' + json['total']);
$('html, body').animate({ scrollTop: 0 }, 'slow');
$('#cart > ul').load('index.php?route=common/cart/info ul li');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}
</script>
干杯