Woocommerce Membership synchronised accross multisite
I have partially fixed the problem by writing a plugin where I generate a shortcode that I can use to progammatically after membership if user is logged in. function wp_add_missing_membership ( $user_id, $plan_id ) { if ( ! function_exists( ‘wc_memberships’ ) ) { return; } $args = array( // Enter the ID (post ID) of … Read more