%s',
esc_html__( 'The site will be redirected to the URL added after clicking finish course button.', 'learnpress' ),
esc_html__( 'Set blank, the site will be redirected to the single course page', 'learnpress' )
);
return apply_filters(
'learn-press/courses-settings-fields',
array_merge(
apply_filters(
'learn-press/course-settings-fields/general',
array(
array(
'title' => esc_html__( 'General', 'learnpress' ),
'type' => 'title',
),
array(
'title' => esc_html__( 'Review courses', 'learnpress' ),
'desc' => esc_html__( 'Courses created by instructors will be pending in review first.', 'learnpress' ),
'id' => 'required_review',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_html__( 'Auto start', 'learnpress' ),
'id' => 'auto_enroll',
'default' => 'yes',
'type' => 'checkbox',
'desc' => esc_html__( 'Students will get started courses immediately after successfully purchased.', 'learnpress' ),
),
array(
'title' => __( 'Enable confirmation popup finish course, complete item', 'learnpress' ),
'desc' => __( 'Show confirmation popup before finishing course or completing item.', 'learnpress' ),
'id' => 'enable_popup_confirm_finish',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_html__( 'Archive page layout', 'learnpress' ),
'desc' => esc_html__( 'Type display list course on Course Archive page', 'learnpress' ),
'id' => 'archive_courses_layout',
'default' => 'list',
'type' => 'select',
'options' => learn_press_courses_layouts(),
),
array(
'title' => esc_html__( 'Courses per page', 'learnpress' ),
'desc' => esc_html__( 'Number of courses displayed per page.', 'learnpress' ),
'id' => 'archive_course_limit',
'default' => '8',
'type' => 'number',
'custom_attributes' => array(
'min' => '1',
),
'css' => 'min-width: 50px; width: 50px;',
),
array(
'title' => esc_html__( 'Enable loading ajax Courses on the Course Archive page', 'learnpress' ),
'desc' => __( 'On/Off loading ajax Courses', 'learnpress' ),
'id' => 'courses_load_ajax',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_html__( 'Not run Ajax when reloading Course Archive page', 'learnpress' ),
'desc' => esc_html__( 'Ajax is only applied when selecting pagination, filtering, searching and sorting. Not applicable when reloading Course Archive page.', 'learnpress' ),
'id' => 'courses_first_no_ajax',
'default' => 'no',
'type' => 'checkbox',
'show_if_checked' => 'courses_load_ajax',
),
array(
'title' => esc_html__( 'Thumbnail dimensions', 'learnpress' ),
'id' => 'course_thumbnail_dimensions',
'default' => array( 500, 300, 'yes' ),
'type' => 'image-dimensions',
),
array(
'title' => esc_html__( 'Redirect when finish course', 'learnpress' ),
'id' => 'course_finish_redirect',
'default' => '',
'type' => 'url',
'placeholder' => 'https://learnpress.com/',
'desc' => $des_option_redirect_finish_course,
),
array(
'type' => 'sectionend',
),
)
),
apply_filters(
'learn-press/course-settings-fields/curriculum',
array(
array(
'type' => 'title',
'title' => esc_html__( 'Curriculum Settings', 'learnpress' ),
'id' => 'lp_metabox_curriculum_setting',
),
array(
'title' => esc_html__( 'Section Per Page', 'learnpress' ),
'id' => 'section_per_page',
'default' => 1,
'type' => 'number',
'desc' => esc_html__( 'Number of sections displayed per page ( Enter -1 for display all sections).', 'learnpress' ),
),
array(
'title' => esc_html__( 'Course Item Per Page', 'learnpress' ),
'id' => 'course_item_per_page',
'default' => 10,
'type' => 'number',
'desc' => esc_html__( 'Number of course items displayed per page in section ( Enter -1 for display all course items).', 'learnpress' ),
),
array(
'type' => 'sectionend',
'id' => 'lp_metabox_curriculum_setting',
),
)
),
apply_filters(
'learn-press/course-settings-fields/single',
array(
array(
'title' => esc_html__( 'Permalinks', 'learnpress' ),
'type' => 'title',
),
array(
'title' => esc_html__( 'Course', 'learnpress' ),
'type' => 'course-permalink',
'default' => '',
'id' => 'course_base',
),
array(
'title' => esc_html__( 'Lesson', 'learnpress' ),
'type' => 'text',
'id' => 'lesson_slug',
'desc' => sprintf( 'e.g. %s/course/sample-course/lessons/sample-lesson/', home_url() ),
'default' => 'lessons',
'placeholder' => 'lesson',
),
array(
'title' => esc_html__( 'Quiz', 'learnpress' ),
'type' => 'text',
'id' => 'quiz_slug',
'desc' => sprintf( 'e.g. %s/course/sample-course/quizzes/sample-quiz/', home_url() ),
'default' => 'quizzes',
'placeholder' => 'quizzes',
),
array(
'title' => esc_html__( 'Category base', 'learnpress' ),
'id' => 'course_category_base',
'default' => 'course-category',
'type' => 'text',
'placeholder' => 'course-category',
'desc' => sprintf( 'e.g. %s/course/%s/sample-course/', home_url(), 'course-category' ),
),
array(
'title' => esc_html__( 'Tag base', 'learnpress' ),
'id' => 'course_tag_base',
'default' => 'course-tag',
'type' => 'text',
'placeholder' => 'course-tag',
'desc' => sprintf( 'e.g. %s/course/%s/sample-course/', home_url(), 'course-tag' ),
),
array(
'type' => 'sectionend',
),
)
)
)
);