Diego
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Error connecting to SquareA new version of the Square plugin (4.7.1) has been released with a fix for this problem.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Statement Descriptor ErrorHey @cullen90!
There seems to be a problem with the previously stored bank statement descriptor; I created an issue to track this: https://github.com/woocommerce/woocommerce-gateway-stripe/issues/2971
In the meantime, you should be able to fix this by removing your previous statement descriptor from the plugin configuration; for example with this WP-CLI command:
wp option patch update woocommerce_stripe_settings statement_descriptor ''
Hey @woodypad!
We are aware that there are a few edge cases in which the statement descriptor does not behave as expected, and we are currently working on a fix for this.
In the meantime, it seems that a snippet like this would fix your problem:
add_filter( 'wc_stripe_generate_create_intent_request', function ( $request, $order, $prepared_source ) { $request[ 'statement_descriptor_suffix' ] = WC_Stripe_Helper::get_dynamic_statement_descriptor_suffix( $order ); unset( $request[ 'statement_descriptor' ] ); return $request; }, 10, 3 );
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe Descriptor ErrorHey @mopixdave!
We are aware that there are a few edge cases in which the statement descriptor does not behave as expected, and we are currently working on a fix for this.
In the meantime, it seems that a snippet like this would fix your problem:
add_filter( 'wc_stripe_generate_create_intent_request', function ( $request, $order, $prepared_source ) { $request[ 'statement_descriptor_suffix' ] = WC_Stripe_Helper::get_dynamic_statement_descriptor_suffix( $order ); unset( $request[ 'statement_descriptor' ] ); return $request; }, 10, 3 );
Forum: Reviews
In reply to: [WooCommerce Stripe Payment Gateway] Good Idea but terrible issueHi @knguyen2011, I am sorry to hear that you had problems with the extension.
Since we do not offer support in review threads, can you open a ticket for this and share the ticket ID here so we continue our conversation there?