0
我使用的是opencart 2.1.0.1,並使用主題默認值。 我在opencart上看到的不便,因爲它沒有按鈕「立即購買」跳過添加到購物車。 各位請幫幫我,如何製作按鈕立即購買opencart 謝謝!如何製作按鈕立即購買opencart?
我使用的是opencart 2.1.0.1,並使用主題默認值。 我在opencart上看到的不便,因爲它沒有按鈕「立即購買」跳過添加到購物車。 各位請幫幫我,如何製作按鈕立即購買opencart 謝謝!如何製作按鈕立即購買opencart?
要更改按鈕上的文字編輯catalog/language/english/english.php
那裏說:
$_['button_cart'] = 'Add to Cart';
如果使用多種語言,因此編輯其他路徑。
重定向到購物車,您可以編輯該文件:/catalog/view/theme/default/template/product/product.tpl
走一走,看一看管線466找到這樣的:
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');
}
更改它添加重定向和註釋掉其他的東西是這樣的:
if (json['success']) {
window.location.href = 'index.php?route=checkout/cart';
//$('.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');
}
如果你想這在類別和搜索列表工作,你需要做同樣的編輯在/catalog/view/javascript/common.js
圍繞線153
究竟什麼是你expecti ng「立即購買」做什麼?將商品添加到購物車後,是否只需要重定向到結帳? – billynoah
是的簡單隻需要點擊立即購買按鈕後重定向到結賬(添加按鈕) –