• Resolved user4523

    (@user4523)


    First of all thanks for this plugin. It helps me a lot. But I have noticed that a field was missing on the listing of entries from a Contact Form 7 form. I think there might be an error in ‘includes/vsz-cf7-db-function.php’ in the function vsz_cf7_get_db_fields() where the field names are getting decoded. The condition

    if ($k != ‘submit_ip’) {

    should be changed to

    if ($v->name != ‘submit_ip’) {

    since $k is just an numeric index of that array from the sql result before.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Vsourz Digital

    (@vsourz1td)

    Hi @user4523,

    If you are talking about the cf7 acceptance field then we are currently working on that but could you please specify the field name which is missing to you.

    Thread Starter user4523

    (@user4523)

    It is no particular field. Just a field I have added to a CF7 form. When you take a look at the function I mentioned than you will see, that this if-condition compares a numeric index with an string. This causes the first element in the array of the form field to be skipped.
    When you change this to

    if ($v->name != ‘submit_ip’) {

    everything works fine and the Advanced CF7 DB listing contains all field of the form.

    Plugin Author Vsourz Digital

    (@vsourz1td)

    Hi @user4523,

    We have recently released a new version of our plugin. your issue has been resolved in the newer version of our plugin. Please do update it and let us know if still any issue occurs.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Missing CF7 field’ is closed to new replies.