-
Notifications
You must be signed in to change notification settings - Fork 210
/
Copy pathfixedquantity.html
38 lines (35 loc) · 1.04 KB
/
fixedquantity.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
#PPMiniCart .quantity { visibility: hidden; }
</style>
</head>
<body>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<fieldset>
<input type="hidden" name="cmd" value="_cart" />
<input type="hidden" name="add" value="1" />
<input type="hidden" name="business" value="[email protected]" />
<input type="hidden" name="item_name" value="Test Product" />
<input type="hidden" name="quantity" value="1" />
<input type="hidden" name="amount" value="1.00" />
<input type="hidden" name="currency_code" value="USD" />
<strong>Test Product</strong>
<input type="submit" name="submit" value="Add to cart" />
</fieldset>
</form>
<script src="../dist/minicart.js"></script>
<script>
paypal.minicart.render();
paypal.minicart.cart.on('add', function (idx, product, isExisting) {
if (isExisting) {
product.set('quantity', 1);
alert('Sorry, you can only have one of those.');
}
});
</script>
</body>
</html>