-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
71 lines (63 loc) · 3.6 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>PayPal Cart with weight-based shipping cost calculation</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-63611585-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body style="margin:50px 0px; padding:0px;text-align:center;font-family: 'Open Sans', sans-serif;">
<h1 style="font-size:50px;">START SELLING THINGS USING PAYPAL</h1>
<img src="minicart-plus.png" alt="" style="width:420px;"/>
<div class="main" style="margin:0px auto; text-align:justify;width:700px;">
<p><strong>Minicart-Plus</strong> is a simple and free of charge Javascript
implementation of a PayPal shopping cart. Minicart-plus is easy to integrated
in your webpage and very easy to castomize.</p>
<p>Would you like to start selling things on your website? Best is to use
PayPal secture servers for it. However, to allow your customers to complete
their purchase and ultimately be re-directed to the PayPal you will need
Minicart-Plus.</p>
<p>Minicart-Plus offers a simple, intuitive and stylish shopping cart window.
Furthermore, Minicart-Plus offers a method to calculate shipping charges
based on total weight. The formula for the shipping fee calculation is:</p>
<p>shipping_cost=shipping_fee_base+(shipping_weight_g/1E3)*shipping_fee_per_kg</p>
<p>So, at the end of the day, you can just use this code without really
wondering about its magic. All you need is just to set the weight for each item using
the variable "weight_g" and define the following two variables:</p>
<p>shipping_fee_base = 12.00;</p>
<p>shipping_fee_per_kg = 6.50;</p>
<h3>ADVANTAGES OF THIS CODE</h3>
<p>Here some advantages of this shopping cart over other solutions.</p>
<ol>
<li>Shipping fee is based on weight via a simple linear formula.</li>
<li>Shipping fee is calculated and shown right away. Studies show that
customers often leave shopping pages because unsure or confused about
shipping costs.</li>
<li>Works on any browsers and device. The size of the shopping cart is
reduced to allow people to buy from mobile phones and small devices.</li>
<li>Written in JS, no need for server-side code. Furthermode, there is no
need for any PayPal Business account.</li>
<li>Minicart-Plus interfaces with the PayPal webpage for secure money transfer.</li>
<li><strong>It is FREE OF CHARGE !</strong></li>
</ol>
<h3>LIVE EXAMPLE</h3>
<p> Have a look at <a href="http://fabriziotappero.github.io/minicart-plus/demo.html">
this simple Live Example</a>.</p>
<h3>GIVE ME MORE</h3>
<p>I love this code but I would you like further customisations. Drop me a line and
I will be happy to help you.</p>
<p>fabrizio.tappero(at)gmail.com</p>
<h3>CODE</h3>
<p>The lastest version of the minicart--plus code is available here:</p>
<a href="https://github.com/fabriziotappero/minicart-plus">
https://github.com/fabriziotappero/minicart-plus</a>
</div>
</body>
</html>