- Last Version Tested: Wordpress 4.5.2 WooCommerce 2.5.5
You must have a BitPay merchant account to use this plugin. It's free to sign-up for a BitPay merchant account.
- Wordpress >= 4.3.1 (Older versions will work, but we do not test against those)
- WooCommerce >= 2.4.10
- GMP or BCMath You may have to install GMP as most servers do not come with it, but generally BCMath is already included.
- mcrypt
- OpenSSL Must be compiled with PHP
- PHP5 Curl Must be compiled with PHP
- PHP >= 5.5 (we tested this on 5.5)
- Be sure to restart apache after the installation:
sudo apachectl restart
Please Note: Merchants who have a previous version of the WooCommerce BitPay Payment Gateway will need to remove it. This can be done by going to the Wordpress's Adminstration Panels > Plugins. Deactivate the old plugin, then delete it.
Visit the Releases page of this repository and download the latest version. Once this is done, you can just go to Wordpress's Adminstration Panels > Plugins > Add New > Upload Plugin, select the downloaded archive and click Install Now. After the plugin is installed, click on Activate.
WARNING: It is good practice to backup your database before installing plugins. Please make sure you create backups.
Configuration can be done using the Administrator section of Wordpress. Once Logged in, you will find the configuration settings under WooCommerce > Settings > Checkout > BtcPay. Alternatively, you can also get to the configuration settings via Plugins and clicking the Settings link for this plugin.
Here your will need to create a pairing code using your BtcPay store ^ account. Once you have a Pairing Code, put the code in the Pairing Code field:
On success, you'll receive a token:
NOTE: Pairing Codes are only valid for a short period of time. If it expires before you get to use it, you can always create a new one and pair with it.
NOTE: You will only need to do this once since each time you do this, the extension will generate public and private keys that are used to identify you when using the API.
You are also able to configure how BitPay's IPN (Instant Payment Notifications) changes the order in your WooCommerce store.
Save your changes and you're good to go!
Once enabled, your customers will be given the option to pay with Bitcoins. Once they checkout they are redirected to a full screen BitPay invoice to pay for the order.
As a merchant, the orders in your WooCommerce store can be treated as any other order. You may need to adjust the Invoice Settings depending on your order fulfillment.
It is highly recommended you install the GMP extension for PHP to acheive maximum performance when using this plugin.
http://php.net/manual/en/gmp.installation.php
If the extension has been included with your PHP install, you only need to uncomment the line in the PHP ini configuration file.
On Windows:
; From
;extension=php_gmp.dll
; To
extension=php_gmp.dll
For Ubuntu:
$ sudo apt-get update
$ sudo apt-get install php5-gmp
$ sudo php5enmod gmp
# Restart your server
For Other Linux Systems:
; From
;extension=gmp.so
; To
extension=gmp.so
# Restart your server