# learnpress/4.4.8/assets/src/js/frontend/profile.js

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.8. 24 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.8/code/assets/src/js/frontend/profile.js
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.8/raw/assets/src/js/frontend/profile.js
- Modified: 2026-09-18T11:22:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.8/code/assets/src/js/frontend/profile.js#L10-L20`.

```javascript
import courseTab from './profile/course-tab';
import courseStatistics from './profile/statistic';
import recoverOrder from './profile/order-recover';
import profileCoverImage from './profile/cover-image';
import profileAvatarImage from './profile/avatar';
import profileQuizTab from './profile/quiz';
import orderRefund from './profile/order-refund';
import { ViewStudentsModal } from '../admin/courses/view-students-modal';

profileCoverImage();
profileQuizTab();
courseStatistics();
recoverOrder();
orderRefund();
new ViewStudentsModal();

document.addEventListener( 'DOMContentLoaded', function( event ) {
	courseTab();
} );

if ( document.getElementById( 'learnpress-avatar-upload' ) ) {
	profileAvatarImage();
}

```
