Tangerine Web Works
Forum Replies Created
-
Hi @instadesign,
One of my clients is having the same issue. I saw your comment and removed the field content and the payment went through. According to Stripe, the “statement_descriptor” parameter should now be “statement_descriptor_suffix”. Maybe this requirement only applies to newer accounts, since I have another client site using this plugin with no issues.
Hopefully, there will be an update soon.
I’m having the same issue. Was this ever resolved?
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] WooCommerce Subscriptions and StripeI know there is a difference.
We’ve already imported the payment data from Braintree and I created new subscriptions in Stripe.
My question is how do I get that synced with the customers in WooCommerce. I’ve added the Stripe customer IDs to the current users, but don’t see a way to change the gateway ID on the individual orders. Stripe also sent a file to match the customers, but I don’t know what to do with that.
Is there a way to sync them within your plugin or do I have to recreate the subscriptions in Woo?
- This reply was modified 3 years, 6 months ago by Tangerine Web Works.
Forum: Plugins
In reply to: [Contact Form 7] Forms are Still Returning Errorsadded to controller.php:
add_filter( ‘widget_text’, ‘wpcf7_widget_text_filter’, 9 );function wpcf7_widget_text_filter( $content ) {
$pattern = ‘/\[[\r\n\t ]*contact-form(-7)?[\r\n\t ].*?\]/’;if ( ! preg_match( $pattern, $content ) ) {
return $content;
}$content = do_shortcode( $content );
return $content;
}added function using My Custom Functions plugin:
add_filter( ‘wpcf7_recaptcha_verify_response’,
function( $is_human, $response_body ) {
$score = isset( $response_body[‘score’] ) ? $response_body[‘score’] : 0;
$threshold = 0.1;
$is_human = $threshold < $score;
return $is_human;
},
10, 2
);Deactivated and activated plugins with no change.
Also removed NoCaptcha reCaptcha from WP login page and deleted previous keys.