Does anyone know how to fix the error "Your order can't be shipped to this address" in Fluent Cart?
My product is a digital subscription (paid membership community via Fluent Community) and I'm getting this error message.
Looks like it's a error from PayPal. I will check from our codebase. We don't mark any item as require shipping from the API request.
I called PayPal and they said itβs not from there end. Apparently the βcannot ship to your addressβ is a common error. I havenβt been able to find a fix for it but it has something to do with the shipping and delivery settings in fluent cart. Hereβs what I found online about this error in Shopify:Β
Up, I have the same issue, just opened a support ticket about it.
It looks like current implementation raises a 400 Errror (request is not well-formed) from a get from fluentcart to PayPal, but I ma not sure the issue is actually there.
Iβll let you know what I find out from my support ticket. They said they are looking into it. I sent them a video this morning.
Patricia MontagnoΒ They just answered me they fixed and it'll be available in the next update :-)
I was just about to send you the same message!
Also they said this CSS will fix the issue with not being able to click the βagree to terms and conditionsβ box:
.fct_checkout input[type="checkbox"]::before{
Β Β border-color: unset !important;
}Patricia MontagnoΒ This is an issue I mentioned to WPMN Support before. The thing is that the box is ticked, but their CSS makes it white on white, so you can't see it. Only if you set the border color or better still the back ground, can you see whether the box is checked or not.
Helmar RudolphΒ oh! Can you tell me how to change the background color? Is that even possible? Thank you!
Patricia Montagno
Β .fct_checkout input[type=checkbox]:checked {
background-color: #111 !important;
}
Thank you!!!