Support » Plugin: Theme My Login » No pages or forms showing up

  • I can’t get anything to show up other than the login form.

    1. Installed and activated the plugin
    2. Went to http://www.site.com/blogname/?action=login. Page was completely blank
    3. Created a page template for login.php (clone of page.php only without the comments template. Template part call is still (‘content, ‘page’)
    4. Created a page called “Login” and added the shortcode [theme-my-login] and assigned login.php as it’s template (not part of your installations instructions, btw… )
    5. I now see the login screen, but clicking registration or lost password only change the url, not the content on the page.

    I’ve also tried copying and pasting the TML template code into my own templates to theme and style them, which clearly does not work.

    Am I missing something? I’ve already disabled all the extra settings and all plugins with no change. All the online tutorials make this plugin seem like a snap to implement. I must be overlooking something obvious.

    http://wordpress.org/extend/plugins/theme-my-login/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter kristinachilds

    (@kristinachilds)

    I suppose I could save my self a lot of hassle and just ask you outright before going through all this, though…

    Does your plugin allow you to change the registration activation url? The one that is sent out for the user to click to confirm their registration. I’ve actually already built a nice little system that hides wordpress almost completely except for that stupid link I can’t figure out how to change. If this plugin doesn’t do that, this whole attempt is moot.

    …it would be nice to have something simpler to update, though.

    Plugin Author Jeff Farthing

    (@jfarthing84)

    If you’re talking about multisite, no.

    Thread Starter kristinachilds

    (@kristinachilds)

    Not multisite.

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Then yes, it can be done. Activate the Custom E-mail module. Then, you’ll need to apply a filter to the tml_custom_email_variables filter, in order to get your custom link available as a variable to the module.

    function tml_custom_email_variables( $replacements, $user_id ) {
    	// Do what's needed to retrieve your custom link
    	$replacements['%activateurl%'] = 'YOU CUSTOM URL';
    
    	return $replacements;
    }
    add_filter( 'tml_custom_email_variables', 'tml_custom_email_variables', 10, 2 );
    Thread Starter kristinachilds

    (@kristinachilds)

    Thanks for that, i’ll give it a try. My initial problem isn’t resolved yet, though.

    Once installed, the links to switch between login, register or retrieve password don’t change any of the content, only the URL. Every option displays the login form only. http://www.site.com/forums/?action=lostpassword url resolves to the blog homepage

    Any ideas?

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Be sure that your template is correctly utilizing The Loop.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘No pages or forms showing up’ is closed to new replies.