All Projects → mnoskov → commerce

mnoskov / commerce

Licence: other
Commerce for Evolution CMS

Programming Languages

PHP
23972 projects - #3 most used programming language
Smarty
1635 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to commerce

Laravel Ecommerce
AvoRed an Open Source Laravel Shopping Cart
Stars: ✭ 1,151 (+4162.96%)
Mutual labels:  commerce, cart
saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 15,824 (+58507.41%)
Mutual labels:  commerce, cart
Saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 14,720 (+54418.52%)
Mutual labels:  commerce, cart
Example Storefront
Example Storefront is Reaction Commerce’s headless ecommerce storefront - Next.js, GraphQL, React. Built using Apollo Client and the commerce-focused React UI components provided in the Storefront Component Library (reactioncommerce/reaction-component-library). It connects with Reaction backend with the GraphQL API.
Stars: ✭ 471 (+1644.44%)
Mutual labels:  commerce, cart
Vc Storefront
VirtoCommerce Storefront for ASP.NET Core 3.1 repository
Stars: ✭ 122 (+351.85%)
Mutual labels:  commerce, cart
Grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
Stars: ✭ 1,768 (+6448.15%)
Mutual labels:  commerce, cart
Reaction
Mailchimp Open Commerce is an API-first, headless commerce platform built using Node.js, React, GraphQL. Deployed via Docker and Kubernetes.
Stars: ✭ 11,588 (+42818.52%)
Mutual labels:  commerce, cart
cart
Shopping cart composer package
Stars: ✭ 109 (+303.7%)
Mutual labels:  cart
Shopping-Cart-MERN
💸 Simple Online Shopping Cart made with the MERN Stack
Stars: ✭ 34 (+25.93%)
Mutual labels:  cart
ng-shopping-cart
🛒 An Angular component library to create shopping carts
Stars: ✭ 46 (+70.37%)
Mutual labels:  cart
Frontend-Learning-Journey
Tutorials, definitions, frameworks and some of the projects i made when starting to learn frontend web developement
Stars: ✭ 28 (+3.7%)
Mutual labels:  cart
react-use-cart
React hook library for managing cart state
Stars: ✭ 297 (+1000%)
Mutual labels:  cart
pagebuilder
Page Builder for Evolution CMS
Stars: ✭ 21 (-22.22%)
Mutual labels:  evolution-cms
commerce-cif-connector
AEM Commerce connector for Magento and GraphQL
Stars: ✭ 42 (+55.56%)
Mutual labels:  commerce
cart
Cart Module for Vanilo (or any Laravel app)
Stars: ✭ 43 (+59.26%)
Mutual labels:  cart
mytek
Django e-commerce web application with advanced features
Stars: ✭ 27 (+0%)
Mutual labels:  cart
richer
jquery free ajax cart for shopify
Stars: ✭ 35 (+29.63%)
Mutual labels:  cart
commerce-cif-magento-graphql
Magento GraphQL data models and query builders for AEM
Stars: ✭ 20 (-25.93%)
Mutual labels:  commerce
nextjs-woocommerce-restapi
A React WooCommerce Project Example With REST API
Stars: ✭ 168 (+522.22%)
Mutual labels:  cart
dotmailer-magento-extension
The official Engagement Cloud for Magento extension
Stars: ✭ 14 (-48.15%)
Mutual labels:  cart

Commerce

E-commerce solution for Evolution CMS.

Documentation:

https://docs.evo.im/04_extras/commerce.html
https://github.com/evocms-community/docs/tree/master/ru/04_%D0%9A%D0%BE%D0%BC%D0%BF%D0%BE%D0%BD%D0%B5%D0%BD%D1%82%D1%8B/Commerce

Payment methods:

Bill
CloudPayments
Interkassa
LiqPay
Mollie
Paymaster
PaynetEasy
PayPal
Robokassa
Альфа-Банк
Сбербанк
Сбербанк кредит "Покупай со Сбербанком"
Stripe
Stripe Embed
Tinkoff
Uniteller
Центральная касса (нужен тестовый аккаунт для проверки)
WayForPay
ЮKassa (Яндекс.Касса)
Authorize.net
Webpay
Przelewy24

Delivery:

Новая почта
СДЭК
GoShippo

Other:

Product Options
Coupons
Coupons (3.x)
Discounts
CBR Currency Updater
Dashboard
Отправка чеков в arendakass.ru
Database storage for commerce carts
A plugin to list order data in a separate page

Add product to cart:

<form action="#" data-commerce-action="add">
    <input type="hidden" name="id" value="[*id*]">
    <input type="hidden" name="count" value="1">
    <input type="hidden" name="options[color]" value="White">
    <input type="hidden" name="options[services][]" value="Uplift">
    <input type="hidden" name="options[services][]" value="Assembling">
    <input type="hidden" name="meta[key]" value="value">
    <button type="submit">Add to cart</button>
</form>

<a href="#" data-commerce-action="add" data-id="[*id*]" data-count="2">Add to cart</a>

<a href="#" data-commerce-action="add" data-id="[*id*]" data-instance="wishlist">Add to wishlist</a>

<a href="#" data-commerce-action="remove" data-row="[*row*]">Remove from cart by row hash</a>

<a href="#" data-commerce-action="remove" data-id="[*id*]">Remove from cart by ID</a>

<!-- batch adding -->
<form action="#" data-commerce-action="add">
    <input type="checkbox" name="batch[1][id]" value="1">
    <input type="hidden" name="batch[1][count]" value="1">
    <input type="checkbox" name="batch[2][id]" value="2">
    <input type="hidden" name="batch[2][count]" value="1">
    <button type="submit">Add to cart</button>
</form>

Show cart:

[!Cart
    &instance=`products`
    &theme=``
    &tpl=`tpl`
    &optionsTpl=`optionsTpl`
    &ownerTPL=`ownerTPL`
    &subtotalsRowTpl=`subtotalsRowTpl`
    &subtotalsTpl=`subtotalsTpl`
!]

Show currency selection:

[!CurrencySelect
    &tpl=`tpl`
    &activeTpl=`activeTpl`
    &outerTpl=`outerTpl`
!]

Show order form:

[!Order
    &formTpl=`formTpl`
    &deliveryTpl=`deliveryTpl`
    &deliveryRowTpl=`deliveryRowTpl`
    &paymentsTpl=`paymentsTpl`
    &paymentsRowTpl=`paymentsRowTpl`
    &reportTpl=`reportTpl`
    &ccSenderTpl=`ccSenderTpl`
!]

Payments settings:

Process: POST /commerce/<payment_code>/payment-process
Success: POST /commerce/<payment_code>/payment-success
Failed:  POST /commerce/<payment_code>/payment-failed
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].