I did all of those. The error is in this part of the code, Can I get someone to fix this in the code so I don’t have to manually fix it every time?
The issue was in the file: ‘/wp-content/plugins/woocommerce-gateway-stripe/includes/payment-methods/class-wc-stripe-payment-request.php’ line 365, where I had to add (int) casting to both values:
broken:
$product_price = $product->get_price() + WC_Subscriptions_Product::get_sign_up_fee( $product );
fixed:
$product_price = (int)$product->get_price() + (int)WC_Subscriptions_Product::get_sign_up_fee( $product );