Title: cannot get it work with 3.7
Last modified: August 21, 2016

---

# cannot get it work with 3.7

 *  Resolved [mainpart](https://wordpress.org/support/users/mainpart/)
 * (@mainpart)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cannot-get-it-work-with-37/)
 * wordpress output new stylesheet but output old html theme.
    i’m using artisteer
   theme.
 * [http://wordpress.org/plugins/user-theme/](http://wordpress.org/plugins/user-theme/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [mainpart](https://wordpress.org/support/users/mainpart/)
 * (@mainpart)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cannot-get-it-work-with-37/#post-4550741)
 * the further digging leads me to the fact that it is impossible to use $user_ID
   template redirection becase on the first call when TEMPLATEPATH constant is defined
 *     ```
       define('TEMPLATEPATH', get_template_directory());
       ```
   
 * in /wp-includes/default-constants.php **no active user is set up.**
 *  Thread Starter [mainpart](https://wordpress.org/support/users/mainpart/)
 * (@mainpart)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cannot-get-it-work-with-37/#post-4550742)
 * the solution is to use:
 *     ```
       $user= wp_get_current_user();
       if ( isset($user->ID) &&  in_array( $user->ID, array( 2,3,4 ) ) )
       		$template = 'classic';
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘cannot get it work with 3.7’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/user-theme.svg)
 * [User Theme](https://wordpress.org/plugins/user-theme/)
 * [Support Threads](https://wordpress.org/support/plugin/user-theme/)
 * [Active Topics](https://wordpress.org/support/plugin/user-theme/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-theme/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-theme/reviews/)

 * 2 replies
 * 1 participant
 * Last reply from: [mainpart](https://wordpress.org/support/users/mainpart/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/cannot-get-it-work-with-37/#post-4550742)
 * Status: resolved