• When I try to change the settings for the Data section of the FRONTEND tab in MM Forms Pro (which sets how data displays on the website) the changes do not save. This also means that, if I by-pass the backend and change them directly in the database (in the formloopdata field of the wp_contactform table), they revert back to the default when I make other changes to the form.

    Eg, my data:

    <tr>
    <td>[player_name]</td>
    <td><a href="mailto:[parent_email]">[parent_email]</a></td>
    <td>[contact_name]</td>
    <td>[contact_phone]</td>
    </tr>

    Always saves as default:

    <tr>
    <td>[your-name]</td>
    <td>[your-email]</td>
    <td>[your-subject]</td>
    <td>[your-message]</td>
    </tr>

    I am using WordPress 3.0.4 in test and 3.0.1 in production with MM Forms Pro 2.1.0 and have the same problem with both.

Viewing 1 replies (of 1 total)
  • Thread Starter houfton

    (@houfton)

    Update: Tom, the developer, has given me a fix for this bug.

    In mm-forms.php change a line in the form_display_loopdata function (somewhere around line 2270):

    old:
    if($select_datas[0]=='')

    new:
    if($select_datas[0]->formloopdata<>'')

    Richard

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: MM Forms] Frontend Data setting not saving’ is closed to new replies.