Title: Plugin does not work with WordPress v3.5
Last modified: August 20, 2016

---

# Plugin does not work with WordPress v3.5

 *  Resolved [Iyngvar](https://wordpress.org/support/users/iyngvar/)
 * (@iyngvar)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/)
 * Plugin does not work with WordPress v3.5
    Sad but true…
 * Why ?
 * [http://wordpress.org/extend/plugins/theme-my-login/](http://wordpress.org/extend/plugins/theme-my-login/)

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/page/2/?output_format=md)

 *  [learncomputer](https://wordpress.org/support/users/learncomputer/)
 * (@learncomputer)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266013)
 * I second that. The shortcodes on the login/register pages no longer render. They
   just show up as [theme-my-login-page].
 *  [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266018)
 * Since this is a visual rendering of the code that is not happening for whatever
   reason. ie the editor has now changed in WP 3.5 then you can modify the TML Template
   file to display the code. Everything appears to be functioning normally and do
   not see any reason why it would not since this is just a simple matter for forcing
   code to render as code visually.
 * /theme-my-login/templates/login-form.php
 * Code line 12 and 21 you are just adding the “code” tag with no formatting.
 *     ```
       <code style="background:none; overflow:hidden; border:none;">
       		<p>
       			<label for="user_login<?php $template->the_instance(); ?>"><?php _e( 'Username', 'theme-my-login' ) ?></label>
       			<input type="text" name="log" id="user_login<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'log' ); ?>" size="20" />
       		</p>
       		<p>
       			<label for="user_pass<?php $template->the_instance(); ?>"><?php _e( 'Password', 'theme-my-login' ) ?></label>
       			<input type="password" name="pwd" id="user_pass<?php $template->the_instance(); ?>" class="input" value="" size="20" />
       		</p>
       </code>
       ```
   
 *  [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266019)
 * [@jeff](https://wordpress.org/support/users/jeff/) – it may also be necessary
   to do something similar with this of course to handle all cases. Very, very dirty,
   but does work. 😉
 *     ```
       $insert = array(
       	'post_title' => 'Login',
       	'post_status' => 'publish',
       	'post_type' => 'page',
       	'post_content' => "<code>".'[theme-my-login]'."</code>",
       	'comment_status' => 'closed',
       	'ping_status' => 'closed'
       		);
       ```
   
 *  [jkucera70](https://wordpress.org/support/users/jkucera70/)
 * (@jkucera70)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266023)
 * Plugin does not work with WordPress v3.5 too
 *  [Vakantie Ameland](https://wordpress.org/support/users/christianebuddy/)
 * (@christianebuddy)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266025)
 * Plugin indeed is not working with wordpress 3.5, even after changes suggested
   above. Strangely one of many wordpress 3.5 installs is working without problems??
   The Constructor theme is installed
 *  [pe2mc](https://wordpress.org/support/users/pe2mc/)
 * (@pe2mc)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266026)
 * [@aitpro](https://wordpress.org/support/users/aitpro/) can you give more details
   on where tp put the code.
    Do we have to change is on line 12 and 21?
 * And where to put the dirty lines 🙂
 * Need a solution on my login page. Love the plugin
 *  [Open Designs](https://wordpress.org/support/users/opendesigns/)
 * (@opendesigns)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266031)
 * It is the shortcode that’s not working correctly. Template tags work fine. I’m
   sure Jeff will have an update out as soon as he can.
 * If you want a workaround until then, just copy and rename whichever page template
   you’re using for the login page and add in the template tag.
 * Then you can change the page template in the editor and you’ll have a working
   form until this issue gets resolved.
 *  [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266032)
 * If the workaround above does not work for you/your setup and you are looking 
   for the dirty fix then that code is located here:
 * /theme-my-login/admin/class-theme-my-login-admin.php code line 660.
 * it would be better to do something like this.
 *     ```
       $tempFixUntilJeffCanFix = "<code>".'[theme-my-login]'."</code>";
   
       $insert = array(
       	'post_title' => 'Login',
       	'post_status' => 'publish',
       	'post_type' => 'page',
       	'post_content' => $tempFixUntilJeffCanFix,
       	'comment_status' => 'closed',
       	'ping_status' => 'closed'
       	);
       ```
   
 *  [noisegate95](https://wordpress.org/support/users/noisegate95/)
 * (@noisegate95)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266041)
 * Been following this thread all day since 3.5 seemed to have broken my plugin 
   as well. I tried all the steps above to no avail. However, I noticed that my 
   shortcode was changed to `[theme-my-login-page]` rather than `[theme-my-login]`.
 * Not sure how this happened, because I also checked old revisions from November
   15th, and sure enough the code had “page” at the end. Yet it still worked the
   past month.
 * Coincidence? Really not sure. Check your short code. Without the “page” at the
   end, mine is working.
 * [http://blog.noisegate95.com](http://blog.noisegate95.com)
 *  [B.](https://wordpress.org/support/users/bandonrandon/)
 * (@bandonrandon)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266054)
 * actually for me it started working after using the shortcode `[theme-my-login]`
 *  Thread Starter [Iyngvar](https://wordpress.org/support/users/iyngvar/)
 * (@iyngvar)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266065)
 * Bingo !
    It’s working with **[theme-my-login]** code instead of **[theme-my-login-
   page]**
 * Without any changes in plugin code …
 *  [Open Designs](https://wordpress.org/support/users/opendesigns/)
 * (@opendesigns)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266066)
 * So weird that it’s changed the shortcode in a post without the post being edited.
 * Changed it to `[theme-my-login]` and, as others have said, it’s working again.
 *  [noisegate95](https://wordpress.org/support/users/noisegate95/)
 * (@noisegate95)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266067)
 * Great to hear. Sometimes it is the “easist” fix that gets you going again.
 *  [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266068)
 * had to do both things for my particular TML setup. Change the shortcode and add
   the “code” tags. Guess i have a little different setup then everyone else. 😉
 *  [Vakantie Ameland](https://wordpress.org/support/users/christianebuddy/)
 * (@christianebuddy)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/#post-3266069)
 * For me using `[theme-my-login]` is the solution.

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/page/2/?output_format=md)

The topic ‘Plugin does not work with WordPress v3.5’ is closed to new replies.

 * ![](https://ps.w.org/theme-my-login/assets/icon-256x256.png?rev=1891232)
 * [Theme My Login](https://wordpress.org/plugins/theme-my-login/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/theme-my-login/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/theme-my-login/)
 * [Active Topics](https://wordpress.org/support/plugin/theme-my-login/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/theme-my-login/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/theme-my-login/reviews/)

 * 16 replies
 * 10 participants
 * Last reply from: [Jeff Farthing](https://wordpress.org/support/users/jfarthing84/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-does-not-work-with-wordpress-v35-2/page/2/#post-3266084)
 * Status: resolved