issue
マイアカウント表示で姓名順が逆に表示される。
solution
『<site-root>/wp-content/plugins/sfwd-lms/themes/ld30/templates/shortcodes/profile.php』のファイルを、
『<site-root>/wp-content/themes/<PARENT or CHILD theme folder>/learndash/ld30/shortcodes/profile.php』にコピー。
78 行目のコードで名前の順序を変更。
78行目
<?php echo esc_html( $current_user->user_firstname . ' . $current_user->user_lastname ); ?>
を、下記に変更。
<?php echo esc_html( $current_user->user_lastname . ' . $current_user->user_firstname ); ?>