Skip to content

Commit f6c826d

Browse files
committed
v4.8.8
* Minor fixes * Minor improvements
1 parent 7730df8 commit f6c826d

5 files changed

Lines changed: 12 additions & 4 deletions

File tree

CryptAPI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: CryptAPI Payment Gateway for WooCommerce
44
Plugin URI: https://github.com/cryptapi/woocommerce-cryptapi
55
Description: Accept cryptocurrency payments on your WooCommerce website
6-
Version: 4.8.7
6+
Version: 4.8.8
77
Requires at least: 5.8
88
Tested up to: 6.7
99
WC requires at least: 5.8

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,10 @@ The easiest and fastest way is via our live chat on our [website](https://crypta
389389
* Minor fixes
390390
* Minor improvements
391391

392+
#### 4.8.8
393+
* Minor fixes
394+
* Minor improvements
395+
392396
### Upgrade Notice
393397
#### 4.3
394398
* Please be sure to enable the PHP extension BCMath before upgrading to this version.

controllers/CryptAPI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ function add_email_link($order, $sent_to_admin, $plain_text, $email)
14851485

14861486
function add_order_link($actions, $order)
14871487
{
1488-
if ($order->has_status('on-hold')) {
1488+
if ($order->has_status('on-hold') && $order->get_payment_method() === 'cryptapi') {
14891489
$action_slug = 'ca_payment_url';
14901490

14911491
$actions[$action_slug] = array(

define.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
define('CRYPTAPI_PLUGIN_VERSION', '4.8.7');
3+
define('CRYPTAPI_PLUGIN_VERSION', '4.8.8');
44
define('CRYPTAPI_PLUGIN_PATH', plugin_dir_path(__FILE__));
55
define('CRYPTAPI_PLUGIN_URL', plugin_dir_url(__FILE__));

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: cryptapi
33
Tags: crypto payments, woocommerce, payment gateway, crypto, payment, pay with crypto, payment request, bitcoin, bnb, usdt, ethereum, litecoin, bitcoin cash, shib, doge
44
Requires at least: 5.8
55
Tested up to: 6.7
6-
Stable tag: 4.8.7
6+
Stable tag: 4.8.8
77
Requires PHP: 7.2
88
WC requires at least: 5.8
99
WC tested up to: 9.4.1
@@ -387,6 +387,10 @@ The easiest and fastest way is via our live chat on our [website](https://crypta
387387
* Minor fixes
388388
* Minor improvements
389389

390+
= 4.8.8 =
391+
* Minor fixes
392+
* Minor improvements
393+
390394
== Upgrade Notice ==
391395

392396
= 4.3 =

0 commit comments

Comments
 (0)