get( 'sections' ) ) || ( sizeof( $tab_data->get( 'sections' ) ) < 2 ) ) {
return;
}
$link = $profile->get_tab_link( $tab_key );
$unique_group = uniqid( 'course-tab-' );
$sections = $tab_data->get( 'sections' );
$visible_tabs = array();
$active_tab = '';
?>
$section_data ) {
if ( $profile->is_hidden( $section_data ) ) {
continue;
}
$visible_tabs[] = $section_key;
$checked = '';
if ( $profile->is_current_section( $section_key, $section_key ) ) {
$active_tab = $section_key;
// $checked = checked( true, true, false );
// echo '
';
}
?>
$section_data ) {
if ( ! in_array( $section_key, $visible_tabs ) ) {
continue;
}
$classes = array( 'learn-press-tabs__item', esc_attr( $section_key ) );
if ( $active_tab == $section_key ) {
$classes[] = 'active';
}
$section_slug = $profile->get_slug( $section_data, $section_key );
$section_link = $profile->get_tab_link( $tab_key, $section_slug );
?>
-