/*
Theme Name: MasterStudy Child
Theme URI: https://stylemixthemes.com/masterstudy/
Template: masterstudy
Author: StylemixThemes
Author URI: https://stylemixthemes.com/
Description: MasterStudy is the best WordPress theme for the Education &amp; Learning Center - for educational organizations, who sell courses and organize classes locally. Using Masterstudy you can easily setup a WordPress site for your education company.
Tags: classes,courses,education,education center,learning center,tutoring,teaching,study,studying,learning,lessons,instructor,teacher,mentor
Version: 4.4.6.1783844047
Updated: 2026-07-12 16:14:07

*/
.wp-block-woocommerce-customer-account {
    display: none!important;
}

@media (max-width: 767px) {
    body .top_bar_info li.hidden-info {
        display: none !important;
    }
}
.stm_lms_courses__filter_actions input[type=submit] {
    outline: none;
}

.stm-lms-course__lesson-content iframe {
    width: 100%;
}


function my_login_redirect( $redirect_to, $request, $user ) {
    //檢查是否有建置會員制度
    if (isset($user->roles) && is_array($user->roles)) {
        //確認是不是
        if (in_array('administrator', $user->roles)) {
			
			
			
            // 導向指定頁面，程式範例是導向首頁。 
            $redirect_to = home_url();
        }
		
    }
 
    return $redirect_to;
}
 
add_filter( 'login_redirect', 'my_login_redirect', 10, 3 );


function redirect_non_admin_to_home() {
    // 檢查用戶是否為管理者
    if ( ! current_user_can( 'manage_options' ) && ! is_admin() ) {
        // 如果不是管理者且不在後台，則重導到首頁
        wp_redirect( home_url() );
        exit;
    }
}
// 監聽登入後的動作
add_action( 'admin_init', 'redirect_non_admin_to_home' );


add_filter('xmlrpc_enabled', '__return_false');
