#stripe

/

      • hpar
        jones34: that doesn't look quite right for styling Elements… it doesn't inherit the CSS properties from the container, you have to tell it explicitly
      • one sec while I hunt up a complete example
      • jones34
        Cool thanks @hapr
      • @hpar
      • RF
        @hpar cool ty for the link
      • hpar
        jones34: here's an example that uses Google Fonts https://jsfiddle.net/5yz4z2yn/104/
      • so it's two parts: the first is loading the font, which you did, and the second is setting up the style rules on the element itself https://stripe.com/docs/stripe-js/reference#ele...
      • jones34
        I've definitely tried this, but let me add it according to the example and see if it works
      • krazyj
        does anyone know if there’s a way to check a Stripe Connect user’s tax preference? my use case is to determine whether or not they’re configured as 'included'
      • orbyt_ joined the channel
      • koopajah
        krazyj : AFAIK it's per country
      • RF
        @hpar I found out I have SSL TLS 1.3.6
      • krazyj
        koopajah: really? i thought it’s a user-configurable value of (provider|percentage|included)
      • ‘Coinfugre shipping and tax handling'
      • hpar
        RF: that's not a TLS version. Versions are 1.0, 1.1, 1.2, 1.3
      • darby has quit
      • Pseudorandom joined the channel
      • RF
        @hpar I have access to the server...i just don't know where to test that code within my server. is there a guide explaining how to do that? ive never done that before
      • jones34
        @hpar Okay I found the issue - it looks I was calling elements from an object I created like card.element = elements.create(); And when I do it that way the font doesnt load properly
      • ta_ joined the channel
      • It has to be card = elements.create()
      • Any way around that? Is that a bug?
      • Psilidae_ has quit
      • Psilidae joined the channel
      • krazyj
        so no ideas on checking a Connect user’s tax calculation preference?
      • jones34 has quit
      • Pseudorandom has quit
      • koopajah
        krazyj : ah you meant for *Orders*. I would really not recommend Orders and Connect together
      • krazyj
        koopajah: why is that?
      • koopajah
        because it does not work well, you can't control their Order settings for example
      • krazyj
        koopajah: which settings are you referring to?
      • koopajah
        the ones you just talked about?
      • krazyj
        ahh right
      • i’m ok with that for right now… we’re building a simple and early demo
      • that said, do you know how to check that Order preference, koopajah ?
      • koopajah
        krazyj : well you can't. That's why I said not to do that with Connect.
      • krazyj
        ah alright
      • jane_booty_doe joined the channel
      • beno joined the channel
      • jane_booty_doe has quit
      • hpar
        RF: if you copy the example code here: https://support.stripe.com/questions/how-do-i-u... and save it as a file called test.php somewhere in your webroot, you should be able to visit http://yoursite/path/to/test.php and see the output
      • you can also try to run it from the CLI but the command line PHP settings don't always match the server PHP settings
      • RF
        i see...also i was able to use ssllabs.com...does this work?
      • it says its 1.2
      • koopajah
        no ssllabs is entirely separate/unrelated
      • You really should talk to the company that sells you the server/where you host the code. They would be able to look at your server and help
      • Samin has quit
      • Adam____ joined the channel
      • beno
        is document_back something being added to connect custom account verification or is it express-only?
      • koopajah
        beno : it's supported for Custom too. We shipped it last week
      • beno
        I think it's not in any country's individual or additional requirements yet
      • RF
        @koopajah i have server access...i uploaded the file and looked at it through browser...i think im missing the part on line 4 of that php which somehow links it to the plugin?
      • koopajah
        beno : it's not a requirement, it's supported to make the flow easier
      • RF : I don't know what plugin you are talking about exactly?
      • beno
        with custom connect accounts when you submit fields that aren't required you get an exception
      • RF
        @koopajah ah sorry...well its through wodpress with a plugin called gravity forms. within gravity forms stripe is an extension
      • koopajah
        RF : okay so in that case you really need to talk to your host provider and upgrade the entire PHP installation
      • beno : that is definitely not correct/true
      • beno
        I've seen it with a lot of countries
      • for connect custom accounts
      • koopajah
        unless we speak of different things, that is not correct
      • you can always send fields that are not required, as long as they are supported
      • lukas___ joined the channel
      • lukas___
        hello, I have an inquiry about the Stripe Products feature, is this available only in Stripe Connect ?
      • hpar
        lukas___: no, Products works with both Billing and Orders, and is not tied to Connect
      • koopajah has quit
      • Adam____ has quit
      • lukas___
        i see
      • is it possible to pair an order for a product, with a charge for a non-product, so that it becomes a single charge object?
      • hpar
        lukas___: no, every item in an order must be tied to a Product/SKU
      • RF
        @koopajah this plugin has this "system status" section...and i think just like you said about the PHP version..."Version: 5.4.45 ✘ Gravity Forms requires PHP 5.6 or above."
      • hpar
        PHP 5.4 has been out of date for several years now, you'll want to work with your hosting company to upgra\de
      • lukas___ has quit
      • agitator has quit
      • dentist_ joined the channel
      • RF has quit
      • TeddyMurray joined the channel
      • tHanks joined the channel
      • jane_booty_doe joined the channel
      • tHanks
        I've got a question about getting all the transaction data from a payout. I'm building an accounting page that totals sales by category but I have not been able to get all the transactions back with the code I'm using. I've been using a for loop: for item in payout.transactions.auto_paging_iter(): ...rest of code... When I do this I only get back 55 of the 194 transactions. Any ideas why I'm not getting all the transaction data.
      • ?
      • hpar
        are you listing all of the charges in an automatic payout?
      • TeddyMurray has quit
      • TeddyMurray joined the channel
      • tHanks
        essentially, yeah
      • I just need to get all the charges, refunds, whatever other objects would affect the total sales
      • hpar
        so are you using this API endpoint then? https://stripe.com/docs/api#balance_history-payout
      • tHanks
        I've only been using the payout endpoint to retrieve a specific payout and parse the data inside it. Maybe this is what I've been missing.
      • hpar
        yeah, you want to use this to find all of the things that go into a given payout.
      • tHanks
        perfect
      • thank you
      • Miblo has quit
      • tHanks has quit
      • measwel joined the channel
      • Miblo joined the channel
      • measwel has quit
      • TeddyMurray has quit
      • beno has quit
      • cperciva joined the channel
      • sdarby joined the channel
      • sdarby
        Can a subscriptin that is set to non -renewing, ie they canceled. Can we cancel that cancelation?
      • And if so, how would we go about it?
      • hpar
      • sdarby
        hpar, you're awesome. Ty
      • irctc552 joined the channel
      • irctc552
        with the Stripe cocoapod. Is it possible to grab the card brand logos?
      • hpar
        hmm, they are in the resources that get built into your target but I'm not sure how you'd go about extracting them
      • irctc552
        hpar: yeah i assumed so, just was wondering since i wanted to show the user's card brand
      • measwel joined the channel
      • korben
        o/
      • irctc552 has quit
      • orbyt_ joined the channel
      • Doginal joined the channel
      • hkhk has quit
      • Doginal has quit
      • dentist_ has quit
      • natalie_ joined the channel
      • natalie_
        hello - i am trying to set up a raffle with raffleriver.com. is there a way that you can limit the ticket purchasers to only purchase from Nevada zip codes?
      • adfafadf joined the channel
      • korben
        @natalie_ - You could try and email in to https://support.stripe.com/email to see if they can guide you in building some kind of radar rule for that; however, it'd likely only be relative to the billing address. Your best bet would actually be to reach out to raffleriver.com about it.
      • sdarby has quit
      • NightHawk joined the channel
      • NightHawk
        What is the range of the microdeposits for Stripe ACH?
      • is it 0-99? If so, does 03 need to be verified as 03 or just 3
      • natalie_
        raffleriver told me i need to reach out to stripe about this issue
      • korben
        NightHawk: It's an array of strings I think, so it's "03".
      • natalie_: I mean. You can try. I don't know why they would though. We don't have insight into where their users are based. We can just tell you where their banks are based. And even then, not without them explicitly telling us.
      • natalie_: Think of it like this. I'm Bob. I live in Hawaii. I get a bank account there and give them my billing address in Hawaii. I then move to California. I don't change my billing address that I gave to that bank. Now you've got a guy in California, signing up for your raffle with a Hawaiian billing address.
      • natalie_
        thanks, i'll reach out to them again
      • korben
        :)
      • natalie_ has quit
      • NightHawk
        thanks, @korben, I was hoping it was an integer as that was how I coded it, but I can make the change
      • SnakesAndStuff has quit
      • fer_ joined the channel
      • korben
        NightHawk: I'm ~pretty sure anyway. It's probably gonna get cast on our end either way.
      • fer_ has quit
      • NightHawk: Ultimately, it's getting sent to us as a string regardless, because it's a urlencoded string. Then we'd probably decode it to an integer on our side and compare.
      • NightHawk: So I doubt the padding matters in hindsight.
      • tawfiq11 joined the channel
      • tawfiq11
        hi
      • tawfiq11 has left the channel
      • hkhk joined the channel
      • Psilidae_ joined the channel
      • hkhk has quit
      • hkhk joined the channel
      • hkhk has quit
      • hkhk joined the channel
      • NightHawk
        I'd imagine it would be so rebust, but I'd figured I'd ask. Thanks