• If you add other forms to your themed-profile template for extra user customization (profile image, file archive, etc) you probably end up with a WP error.

    The problem is that TML (which btw is a great plugin) doesn’t verify which form is posted from the TML-profile-page and listens to all forms posted.

    You can fix it by diving into modules/themed-profiles/themed-profiles.php

    Row: 215
    change:

    if ( 'POST' == $_SERVER['REQUEST_METHOD']) {

    into:

    if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['from']) && $_POST['from']=='profile') {

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

  • The topic ‘Themed profile form errors’ is closed to new replies.