at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
templates
/
dashboard
/
my-profile.php
run:
R
W
Run
announcements
DIR
2026-04-14 05:34:27
R
W
Run
assignments
DIR
2026-04-14 05:34:27
R
W
Run
elements
DIR
2026-04-14 05:34:27
R
W
Run
enrolled-courses
DIR
2026-04-14 05:34:27
R
W
Run
instructor
DIR
2026-04-14 05:34:27
R
W
Run
my-courses
DIR
2026-04-14 05:34:27
R
W
Run
my-quiz-attempts
DIR
2026-04-14 05:34:27
R
W
Run
notifications
DIR
2026-04-14 05:34:27
R
W
Run
question-answer
DIR
2026-04-14 05:34:27
R
W
Run
quiz-attempts
DIR
2026-04-14 05:34:27
R
W
Run
reviews
DIR
2026-04-14 05:34:27
R
W
Run
settings
DIR
2026-04-14 05:34:27
R
W
Run
withdraw-method-fields
DIR
2026-04-14 05:34:27
R
W
Run
announcements.php
4.61 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
assignments.php
5.34 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
create-course.php
644 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
dashboard.php
16.65 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
enrolled-courses.php
4.66 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
index.php
459 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
logged-in.php
261 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
my-courses.php
15.04 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
my-profile.php
2.59 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
my-quiz-attempts.php
1.79 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
purchase_history.php
10.65 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
question-answer.php
4.59 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
quiz-attempts.php
1.95 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
registration.php
6.49 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
reviews.php
3.84 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
settings.php
775 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
wishlist.php
2.02 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
withdraw.php
13.39 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
my-profile.php
Save
<?php /** * My Profile Page * * @package Tutor\Templates * @subpackage Dashboard * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.4.3 */ $uid = get_current_user_id(); $user = get_userdata( $uid ); $profile_settings_link = tutor_utils()->get_tutor_dashboard_page_permalink( 'settings' ); $rdate = $user->user_registered; $fname = $user->first_name; $lname = $user->last_name; $uname = $user->user_login; $email = $user->user_email; $phone = get_user_meta( $uid, 'phone_number', true ); $job = nl2br( wp_strip_all_tags( get_user_meta( $uid, '_tutor_profile_job_title', true ) ) ); $bio = get_user_meta( $uid, '_tutor_profile_bio', true ); $profile_data = array( 'registration_date' => array( 'label' => __( 'Registration Date', 'tutor' ), 'value' => $rdate ? tutor_i18n_get_formated_date( tutor_utils()->get_local_time_from_unix( $rdate ) ) : '', ), 'first_name' => array( 'label' => __( 'First Name', 'tutor' ), 'value' => $fname ? $fname : esc_html( '-' ), ), 'last_name' => array( 'label' => __( 'Last Name', 'tutor' ), 'value' => $lname ? $lname : '-', ), 'username' => array( 'label' => __( 'Username', 'tutor' ), 'value' => $uname, ), 'email' => array( 'label' => __( 'Email', 'tutor' ), 'value' => $email, ), 'phone_number' => array( 'label' => __( 'Phone Number', 'tutor' ), 'value' => $phone ? $phone : '-', ), 'skill_occupation' => array( 'label' => __( 'Skill/Occupation', 'tutor' ), 'value' => $job ? $job : '-', ), 'biography' => array( 'label' => __( 'Biography', 'tutor' ), 'value' => $bio ? $bio : '-', ), ); $profile_data = apply_filters( 'tutor_profile_data', $profile_data ); ?> <div class="tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mb-24"><?php esc_html_e( 'My Profile', 'tutor' ); ?></div> <div class="tutor-dashboard-content-inner tutor-dashboard-profile-data"> <?php foreach ( $profile_data as $key => $data ) : ?> <div class="tutor-row tutor-mb-24"> <div class="tutor-col-12 tutor-col-sm-5 tutor-col-lg-3"> <span class="tutor-fs-6 tutor-color-secondary"><?php echo esc_html( $data['label'] ); ?></span> </div> <div class="tutor-col-12 tutor-col-sm-7 tutor-col-lg-9"> <?php echo 'biography' === $key ? '<span class="tutor-fs-6 tutor-color-secondary">' . wp_kses_post( wpautop( $data['value'] ) ) . '</span>' : '<span class="tutor-fs-6 tutor-fw-medium tutor-color-black">' . esc_html( $data['value'] ) . '</span>'; do_action( 'tutor_after_profile_data_item_value', $key, $data ); ?> </div> </div> <?php endforeach; ?> </div>