In my other message that wasn’t really a suggested solution and mostly it was to understand exactly what functionality from our plugin you’re using on your site (to sell our memberships from).
Do you want to continue with the WooCommerce integration that lets you attach a PMS subscription plan to a WooCommerce Product/Subscription or do you want to use our Registration form?
This is important so that we know how to continue the investigation further.
Note: Regarding the issue you encounter here: https://www.purepowercycle.com/test/ with the plan selection. This issue comes from the theme you’re using (they’re overriding our styles, especially for the radio buttons). To fix this you can use the following CSS code:
.pms-field input[type=radio] {
display: inline-block !important;
opacity: 1 !important;
visibility: visible !important;
width: 20px !important;
height: 20px !important;
}
You can add this CSS code in your WordPress Dashboard -> Appearance -> Customize -> Additional CSS (you can read more about this?here).