>

' . esc_html__( 'Setup Checklist', 'user-registration' ) . '

' . esc_html__( 'Follow these steps to start registering users on your website.', 'user-registration' ) . '

'; foreach ( $setup_tab_lists as $list ) { if ( isset( $list['text'] ) ) { $completed = isset( $list['completed'] ) && $list['completed']; $content .= '
'; if ( $completed ) { $content .= ' '; } else { $content .= ' '; } $content .= ''; $content .= wp_kses_post( $list['text'] ); if ( ! $completed && isset( $list['documentation'] ) ) { $content .= ' '; } $content .= ''; $content .= '
'; } } $content .= '
'; echo $content; // phpcs:ignore ?>

' . esc_html__( 'Premium Benefits', 'user-registration' ) . '

' . esc_html__( 'Get Even More from User Registration & Membership with the Premium Plan', 'user-registration' ) . '

' . esc_html__( 'The free version of User Registration & Membership is just the start. Upgrade to our Pro version for everything you need for advanced form building.', 'user-registration' ) . '

'; $premium_benefits = array( esc_html__( 'Instant access to 40+ unique addons', 'user-registration' ), esc_html__( 'Advanced fields to enhance your registration forms', 'user-registration' ), esc_html__( 'Simple WooCommerce integration with billing and shipping fields', 'user-registration' ), esc_html__( 'Customization options for user accounts', 'user-registration' ), esc_html__( 'Support for 12 different file types in the file upload option', 'user-registration' ), esc_html__( 'Eye-catching forms with the advanced style customizer', 'user-registration' ), esc_html__( 'Dynamic forms with Conditional Logic', 'user-registration' ), esc_html__( 'Full control over content visibility with Content Restriction', 'user-registration' ), ); foreach ( $premium_benefits as $list ) { $content .= '
'; $content .= ' '; $content .= ''; $content .= wp_kses_post( $list ); $content .= ''; $content .= '
'; } $content .= '
'; $content .= '
'; $content .= ''; echo $content; // phpcs:ignore ?>