An open API service indexing awesome lists of open source software.

https://github.com/mage2pro/alphacommercehub

AlphaCommerceHub integration with Magento 2
https://github.com/mage2pro/alphacommercehub

alphacommercehub australia mage2pro mage2pro-module-ready mage2pro-module-reusable magento magento2 magento2-extension magento2-module payment-gateway

Last synced: 5 months ago
JSON representation

AlphaCommerceHub integration with Magento 2

Awesome Lists containing this project

README

          

This module integrates a Magento 2 based webstore with the **[AlphaCommerceHub](http://alphacommercehub.com.au)** payment service (Australia).
The module is **free** and **open source**.

## What is AlphaCommerceHub?
>Australia Post and [Alpha Payments Cloud](https://mage2.pro/t/3218) have launched a joint venture to provide local businesses with access to eCommerce services such as payment processing, anti-fraud technology, loyalty programs, identity management, logistics and consolidated reporting through a single platform.
>
> “Businesses will no longer need to invest in multiple platforms, integrations and expensive ongoing investment to stay current,” said Australia Post group chief digital officer Andrew Walduck.

[computerworld.com.au/article/626082/aus-post-partners-fintech-ecommerce-hub](https://www.computerworld.com.au/article/626082/aus-post-partners-fintech-ecommerce-hub)
[twitter.com/AlphaFintech/status/897827890728972288](https://twitter.com/AlphaFintech/status/897827890728972288)

## [Demo videos](https://www.youtube.com/playlist?list=PLTq8uOpBQGsFXcazPVhagNxV8Wb77ggoT)
1. [Preauthorize, capture, and refund a bank card payment](https://www.youtube.com/watch?v=qdnMdWwAoMc&list=PLTq8uOpBQGsFXcazPVhagNxV8Wb77ggoT)
2. [Capture a PayPal payment](https://www.youtube.com/watch?v=ZkLBtJ3uY8E&list=PLTq8uOpBQGsFXcazPVhagNxV8Wb77ggoT)
3. [Capture a bank card payment with the **3D Secure** validation](https://www.youtube.com/watch?v=4AgBqO-YT_Y&list=PLTq8uOpBQGsFXcazPVhagNxV8Wb77ggoT)

## [Screenshots](https://mage2.pro/tags/alphacommercehub-screenshot)
- [The frontend checkout screen](https://mage2.pro/t/topic/5152).
- [The backend «**Payment Information**» block for a **bank** card payment](https://mage2.pro/t/topic/5076).
- [The backend «**Payment Information**» block for a **PayPal** payment](https://mage2.pro/t/topic/5168).
- [The backend **orders** list](https://mage2.pro/t/topic/5170).
- [The backend **settings**](https://mage2.pro/t/topic/4816).

## [The **pay page** configuration articles](https://mage2.pro/tags/alphacommercehub-pay-page-configuration)

## How to install
[Hire me in Upwork](https://upwork.com/fl/mage2pro), and I will:
- install and configure the module properly on your website
- answer your questions
- solve compatiblity problems with third-party checkout, shipping, marketing modules
- implement new features you need

### 2. Self-installation
```
bin/magento maintenance:enable
rm -f composer.lock
composer clear-cache
composer require mage2pro/alphacommercehub:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```

## How to update
```
bin/magento maintenance:enable
composer remove mage2pro/alphacommercehub
rm -f composer.lock
composer clear-cache
composer require mage2pro/alphacommercehub:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```