-
Notifications
You must be signed in to change notification settings - Fork 1
/
features.html
101 lines (73 loc) · 3.86 KB
/
features.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
layout: default
title: Features
introduction: SilverShop comes with a lightweight core and a number standard features available as additional modules.
---
{% include header.html %}
<section class="features-list">
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>Products & Variations</h2>
<p>Upload products into the CMS via the interface or in bulk via CSV. Each product is setup as a customizable <code>Page</code> subclass within SilverStripe. Out of the box CMS authors can input pricing, product information and images.</p>
<p>Using standard SilverStripe extension hooks and PHP inheritance developers can extend all built in functionality and add any custom fields.</p>
<p>Product variation's such as color and size, can be added to the product with unique images and prices.</p>
</div>
<div class="col-md-6">
<h2>Customizable Checkout</h2>
<p>Tailor SilverShop to your individual requirements including support for multi-step checkouts, existing user logins or single page checkout. Drop in new <code>CheckoutComponent</code> instances and modify the entire user experience.</p>
</div>
</div>
<hr />
<div class="row">
<div class="col-md-4">
<h2>Coupons & Discounts</h2>
<p>Display discounts to users or provide unique coupon codes through a variety of configurations. Coupons can apply fixed price or percentage discounts to one or multiple products as well as entire cart orders.</p>
<p><a href="https://github.com/silvershop/silvershop-discounts">More Information</a></p>
</div>
<div class="col-md-4">
<h2>Flexible Shipping</h2>
<p>Add one of the out of the box shipping methods such as flat rate, distance or zoned based shipping fees or implement your own method for calculating shipping.</p>
<p><a href="https://github.com/silvershop/silvershop-shipping">More Information</a></p>
</div>
<div class="col-md-4">
<h2>Tax Calculation</h2>
<p>Calculate Tax based on the users country or implement a flat rate across all your products. Display your prices and invoices both inclusive and exclusive of tax for accounting purposes.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2>Translations</h2>
<p>SilverShop supports internationalization (i18n) standards for both the front-end user experience and back-end shop interface.</p>
</div>
<div class="col-md-4">
<h2>Payment</h2>
<p>SilverShop integrates with the PHP standard payment gateway <a href="https://github.com/thephpleague/omnipay">Omnipay</a> which supports over 40 gateways such as PayPal, PaymentExpress, Stripe, Sage Payment and Authorize.Net.</p>
</div>
<div class="col-md-4">
<h2>Reporting</h2>
<p>When the SilverStripe Reports module is installed, the following
reports will be made available in the CMS:</p>
<ul>
<li>Customer Report</li>
<li>Product Report</li>
<li>Weekly & Monthly Sales Reports</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2>Tested</h2>
<p>SilverShop core and our supported modules all contain unit tests and run on Travis CI and Scrutinizer to ensure code is up to standard.</p>
</div>
<div class="col-md-4">
<h2>Supported</h2>
<p>SilverShop is supported by a <a href="/support">core development team</a> who can answer any of your questions and investigate any bugs.</p>
</div>
<div class="col-md-4">
<h2>Extensible</h2>
<p>SilverShop supports all SilverStripe patterns such as <code>Injector</code>, <code>Extensions</code> and <code>Config</code> API's to make modifying the module as easy as possible.</p>
</div>
</div>
</div>
</section>