Viewing 3 replies - 1 through 3 (of 3 total)
  • I am having the same problem. Any time a user updates their profile on the front end, toolbar option is reset to unchecked.

    I am probably missing something, but I don’t understand the rationale behind not showing this option on the profile page.

    WP 3.5.2
    TML 6.3.8

    https://github.com/avivais/projectFit/blob/master/wp-content/plugins/theme-my-login/templates/profile-form.php

    this is the improved code that solved the problem, what you need is the code from line 27 to line 86. Put it between the

    <p>
    <input type="hidden" name="from" value="profile" />
    <input type="hidden" name="checkuser_id" value="<?php echo $current_user->ID; ?>" />
    </p>

    and
    <?php do_action( 'profile_personal_options', $profileuser ); ?>

    the code at line 27 is bugged somehow on my site, so you might need to make some adjustment depends on your website. Also remove the parts which you don’t need as well

    Thank you aister. This worked for me. I only wanted the toolbar option, so I just removed the other parts. Line 27 also did not work for me, but I want the option to be available to everyone anyway, so I just removed it and the closing PHP tags on line 86.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘"Personal Options" missing, causes "Toolbar" to disappear’ is closed to new replies.