Yes! Here’s the issue with mine:
I was using AccessPress’s store theme, and for some reason the Z-Index of the ul#shipping_method li was set behind everything else, so the radio button was unclickable. In other areas of the checkout (as noted above) I was able to click it…the z-index was fine.
Link to page: https://accesspressthemes.com/support/topic/shipping-calculator-not-working-in-cart/#post-45989
What you need to do is bring the list item to the front so it can be clicked. You can see I also removed the input
tag (on their correction) so that the entire link is clickable (bottom post in that thread). The following code should look like this:
.woocommerce ul#shipping_method li {
z-index: 999999999;
position: relative;
}
Hope that helps! It solved my problem.