Skip to content

Commit

Permalink
SP-761 WooCommerce Update - Status
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarzybok-sumoheavy committed Jan 19, 2024
1 parent fff0c06 commit 0e2530a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion BitPayLib/class-bitpayipnprocess.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ private function process_refunded( Invoice $bitpay_invoice, WC_Order $order ): v
private function process_processing( Invoice $bitpay_invoice, WC_Order $order ): void {
$this->validate_bitpay_status_in_available_statuses( $bitpay_invoice, array( 'paid' ) );
$invoice_id = $bitpay_invoice->getId();
$order->add_order_note( $this->get_start_order_note( $invoice_id) . 'is paid and awaiting confirmation.' );
$order->add_order_note( $this->get_start_order_note( $invoice_id ) . 'is paid and awaiting confirmation.' );

$wordpress_order_status = $this->get_gateway_settings()['bitpay_checkout_order_process_paid_status'];
if ( WcGatewayBitpay::IGNORE_STATUS_VALUE === $wordpress_order_status ) {
Expand Down
9 changes: 1 addition & 8 deletions BitPayLib/class-bitpaypluginsetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public function add_error_page(): void {

private function validate_woo_commerce(): array {
global $woocommerce;
if ( true === empty( $woocommerce ) ) {
if ( null === $woocommerce ) {
return array( 'The WooCommerce plugin for WordPress needs to be installed and activated. Please contact your web server administrator for assistance.' );
}

Expand Down Expand Up @@ -217,12 +217,5 @@ function () {
},
5
);

add_action(
'woocommerce_blocks_payment_method_type_registration',
function ( $registry ) {
$registry->register( new BitPayPaymentsBlocks() );
}
);
}
}
1 change: 0 additions & 1 deletion BitPayLib/class-wcgatewaybitpay.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public function __construct() {

$this->has_fields = true;
$this->method_title = __( $this->get_bitpay_version_info(), 'wc-bitpay' ); // phpcs:ignore
$this->method_label = __( 'BitPay', 'wc-bitpay' );
$this->method_description = __( 'Expand your payment options by accepting cryptocurrency payments (BTC, BCH, ETH, and Stable Coins) without risk or price fluctuations.', 'wc-bitpay' );

if ( empty( $_GET['woo-bitpay-return'] ) ) { // phpcs:ignore
Expand Down

0 comments on commit 0e2530a

Please sign in to comment.