Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public function __construct() {
$this->supported_countries = [ 'US' ];
$this->supports[] = 'tokenization';
$this->supports[] = 'subscriptions';
$this->supports[] = 'multiple_subscriptions';

// Check if subscriptions are enabled and add support for them.
$this->maybe_init_subscriptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public function __construct() {
$this->supports_deferred_intent = false;
$this->supports[] = 'tokenization';
$this->supports[] = 'subscriptions';
$this->supports[] = 'multiple_subscriptions';

// Check if subscriptions are enabled and add support for them.
$this->maybe_init_subscriptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public function __construct() {
'woocommerce-gateway-stripe'
);
$this->supports[] = 'tokenization';
$this->supports[] = 'subscriptions';
$this->supports[] = 'multiple_subscriptions';

// Check if subscriptions are enabled and add support for them.
$this->maybe_init_subscriptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public function __construct() {
$this->label = __( 'Credit / Debit Card', 'woocommerce-gateway-stripe' );
$this->supports[] = 'subscriptions';
$this->supports[] = 'tokenization';
$this->supports[] = 'multiple_subscriptions';
$this->description = __(
'Let your customers pay with major credit and debit cards without leaving your store.',
'woocommerce-gateway-stripe'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public function __construct() {
$this->is_reusable = true;
$this->supports[] = 'subscriptions';
$this->supports[] = 'tokenization';
$this->supports[] = 'multiple_subscriptions';
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public function __construct() {
'woocommerce-gateway-stripe'
);
$this->supports[] = 'tokenization';
$this->supports[] = 'subscriptions';
$this->supports[] = 'multiple_subscriptions';

// SEPA Direct Debit is the tokenization method for this method as well as Bancontact and iDEAL. Init subscription so it can process subscription payments.
$this->maybe_init_subscriptions();
Expand Down
Loading