https://github.com/mage2pro/allpay
歐付寶 O'Pay (allPay) integration with Magento 2
https://github.com/mage2pro/allpay
allpay mage2pro mage2pro-module mage2pro-module-ready mage2pro-module-reusable mage2pro-payment magento2 magento2-extension magento2-module magento2-payment-gateway opay taiwan
Last synced: 6 months ago
JSON representation
歐付寶 O'Pay (allPay) integration with Magento 2
- Host: GitHub
- URL: https://github.com/mage2pro/allpay
- Owner: mage2pro
- Created: 2017-01-28T06:15:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T22:52:41.000Z (over 1 year ago)
- Last Synced: 2025-04-10T11:38:01.082Z (6 months ago)
- Topics: allpay, mage2pro, mage2pro-module, mage2pro-module-ready, mage2pro-module-reusable, mage2pro-payment, magento2, magento2-extension, magento2-module, magento2-payment-gateway, opay, taiwan
- Language: PHP
- Homepage: https://upwork.com/fl/mage2pro
- Size: 445 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This module integrates a Magento 2 based webstore with the **[歐付寶 O'Pay (allPay)](https://www.opay.tw)** Taiwanese payment service.
The module is **free** and **open source**.## Demo videos
1. [Capture a **bank card** payment](https://www.youtube.com/watch?v=tmy-YbPGrio).
2. [Capture an **ATM** payment](https://www.youtube.com/watch?v=1S-j8UbXZtA).
3. [Capture a **Barcode** payment](https://www.youtube.com/watch?v=ujA-BOQV6GM).
4. [A payment by **installments**](https://www.youtube.com/watch?v=rAkXZlP8Xok).
5. [Payment **options** on the Magento checkout screen](https://www.youtube.com/watch?v=V0vYTeRALyo).
6. [**Mobile** mode](https://www.youtube.com/watch?v=vZGABg-31xo).
7. [**Fast** mode: skip the billing address form filling](https://www.youtube.com/watch?v=a-gTR5JNlwk).## Screenshots
### Frontend checkout screen
### Frontend checkout screen in the fast mode
### Backend orders list
### Backend settings
## 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/allpay:*
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 en_US zh_Hant_TW
bin/magento maintenance:disable
```## How to update
```
bin/magento maintenance:enable
composer remove mage2pro/allpay
rm -f composer.lock
composer clear-cache
composer require mage2pro/allpay:*
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 en_US zh_Hant_TW
bin/magento maintenance:disable
```