Title: Diego's Replies | WordPress.org

---

# Diego

  [  ](https://wordpress.org/support/users/diegocwp/)

 *   [Profile](https://wordpress.org/support/users/diegocwp/)
 *   [Topics Started](https://wordpress.org/support/users/diegocwp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/diegocwp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/diegocwp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/diegocwp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/diegocwp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/diegocwp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PayPal Enterprise Payments (formerly Braintree) for WooCommerce] Fatal Error on 3.5.0 for Subscription Renewals](https://wordpress.org/support/topic/fatal-error-on-3-5-0-for-subscription-renewals/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [6 months, 4 weeks ago](https://wordpress.org/support/topic/fatal-error-on-3-5-0-for-subscription-renewals/#post-18724039)
 * Hey [@contemplate](https://wordpress.org/support/users/contemplate/), [@yekusiel](https://wordpress.org/support/users/yekusiel/)!
 * Thanks for reporting this, and for sharing the error information.
 * There was a problem with our deploy pipeline that caused some assets to be missing
   from the `3.5.0` release; it has been fixed in version `3.5.1` released a few
   minutes ago.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Stripe Payment Gateway] Cannot refund – Possible API mismatch?](https://wordpress.org/support/topic/cannot-refund-possible-api-mismatch/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [10 months, 3 weeks ago](https://wordpress.org/support/topic/cannot-refund-possible-api-mismatch/#post-18570023)
 * Thanks for reporting this [@ibby](https://wordpress.org/support/users/ibby/).
 * > Since there is no direct error output for the refund in the log, I’d like us
   > to narrow down the issue further
 * Can you search your logs for something like this?
 *     ```wp-block-code
       2025-07-24T19:18:53+00:00 Debug ====Stripe Version: 9.7.0========Stripe Plugin API Version: 2024-06-20========Start Log====Info: Beginning refund for order ch_3Ro7lYDvfveaW3vJ25vxuH1E for the amount of 10.00====End Log====...
       ```
   
 * And then the actual response, which looks like this (“refunds response”):
 *     ```wp-block-code
       2025-07-24T19:18:54+00:00 Debug ====Stripe Version: 9.7.0========Stripe Plugin API Version: 2024-06-20========Start Log====refunds request: Array(    [amount] => 1000    [charge] => ch_3Ro7lYDvfveaW3vJ25vxuH1E)====End Log====2025-07-24T19:18:56+00:00 Debug ====Stripe Version: 9.7.0========Stripe Plugin API Version: 2024-06-20========Start Log====refunds response with stripe-version: 2024-06-20====End Log====...
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Square] Error connecting to Square](https://wordpress.org/support/topic/error-connecting-to-square/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/error-connecting-to-square/#post-17904438)
 * A new version of the Square plugin (4.7.1) has been released with a fix for this
   problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Stripe Payment Gateway] Statement Descriptor Error](https://wordpress.org/support/topic/statement-descriptor-error/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/statement-descriptor-error/#post-17482791)
 * Hey [@cullen90](https://wordpress.org/support/users/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](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](https://wp-cli.org/)
   command:
 *     ```wp-block-code
       wp option patch update woocommerce_stripe_settings statement_descriptor ''
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Stripe Payment Gateway] Can not pay by Stripe – statement_descriptor error](https://wordpress.org/support/topic/can-not-pay-by-stripe-statement_descriptor-error/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/can-not-pay-by-stripe-statement_descriptor-error/#post-17482691)
 * Hey [@woodypad](https://wordpress.org/support/users/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:
 *     ```wp-block-code
       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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Stripe Payment Gateway] Stripe Descriptor Error](https://wordpress.org/support/topic/stripe-descriptor-error/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/stripe-descriptor-error/page/2/#post-17482676)
 * Hey [@mopixdave](https://wordpress.org/support/users/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:
 *     ```wp-block-code
       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](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WooCommerce Stripe Payment Gateway] Good Idea but terrible issue](https://wordpress.org/support/topic/good-idea-but-terrible-issue/)
 *  Plugin Author [Diego](https://wordpress.org/support/users/diegocwp/)
 * (@diegocwp)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/good-idea-but-terrible-issue/#post-17281545)
 * Hi [@knguyen2011](https://wordpress.org/support/users/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](https://woocommerce.com/my-account/create-a-ticket/)
   for this and share the ticket ID here so we continue our conversation there?

Viewing 7 replies - 1 through 7 (of 7 total)