Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Something similar happened to me when I upgraded my existing Custom Contact Form plugin to 5.1.0.3 today so I downgraded to 4.8.0.0 and I have something useable again. I didn’t bother testing any of the version above that. I’m using a really old version of WordPress so maybe it’s related to that.

    What I saw in the admin was that my general setting page and my saved submission page worked but it looked like the page where you can create/edit forms was broken. It stopped printing the page before it even added form fields to the “Create a Form” box. When I looked at the code I saw an opening <form> tag as the last line.

    Another thing that doesn’t work when using the Custom Contact Form widget is permissions for who can view the form. Even when no one, even admin, is given permissions to view the form.

    I’ve been testing this on posts/pages and as a widget and I notice that the error page never appears and just refreshes the page when the Custom Contact Form widget is used. JavaScript error handling would be best in this case.

    I didn’t make any changes to the script besides the above and now I’m seeing a new error that causes the success message after form submission to not appear.

    $j(“#ccf-form-success”).delay is not a function.

    The success message wasn’t appearing even before I made the datepicker change.

    Datepicker scripts should only be included if $include_datepicker = true.

    I’m not using the “Date” field in my form so $include_defaults should = false but that wasn’t happening.

    On custom-contact-forms-front.php on lines 56-57 I changed

    $include_defaults = true;
    $include_datepicker = true;

    to
    $include_defaults = true;
    $include_datepicker = false;

    I didn’t test if this affects forms which are actually using the “Date” field.

    I would also like the content that is entered in textarea fields to be formatted with line/paragraph breaks in emails and on the Saved Form Submissions page.

    Also, is there a way to make sure punctuation and other special characters cut and pasted into the textarea don’t appear as: a€│-

Viewing 6 replies - 1 through 6 (of 6 total)