• Resolved kubus1234

    (@kubus1234)


    I’ve one issue with Conditional Fields for CF7 an the Remember Contactform7 Entries-Plugin: Every group I make show empty fields after reloading the website.
    Entries outsite the group are still there.
    Who knows the solution?

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author Jules Colle

    (@jules-colle)

    Which plugin is that? Never heard of it

    • This reply was modified 4 years, 12 months ago by Jules Colle.
    • This reply was modified 4 years, 12 months ago by Jules Colle.
    Thread Starter kubus1234

    (@kubus1234)

    You can find this Plugin here:Remember CF7 entries

    Maybe you can have a look at the Contact Form on the site I’m working on:Website

    • This reply was modified 4 years, 12 months ago by kubus1234.
    • This reply was modified 4 years, 12 months ago by kubus1234.
    Plugin Author Jules Colle

    (@jules-colle)

    I’m sorry, but the plugin is clearly discontinued. I’m willing to figure out a solution if the author of the plugin can let me know what I should change in my plugin, but I’m not going to dig trough abandoned pieces of software and try to make them compatible from my side.

    Thread Starter kubus1234

    (@kubus1234)

    Hi,
    your plugin works very good. I found another solution for me: CF7 Autosaver. It’s also really outdated, but it works, all enrties are stored.
    I’ve only truble with the checkboxes. Most of the available options for checkboxes from Contact Form 7 are not working.
    For example: Pre-checked options like default:1 doesn’t work and every checked checkbox disappear, if I reload the website.

    Do you have any ideas how to fix it?

    Plugin Author Jules Colle

    (@jules-colle)

    you could try running this piece of javascript after loading the form: jQuery('input').change();

    Thread Starter kubus1234

    (@kubus1234)

    I tried to put the script into the haeder, then footer, then into the CF7 HTML area but still the same issue: if I reload the website the checked checkbox disappears.
    During the loading process it is checked. It disappear after the website ist completely loaded.

    Plugin Author Jules Colle

    (@jules-colle)

    dirty fix:

    jQuery('document').ready(function() {
      setTimeout(function() { 
        jQuery('input').change();
     }, 1000);
    });

    I kindly advise you to learn some javascript or hire a developer though. No offence. You’re going to have a much more maintainable solution if you have this implemented by a developer instead of piecing it together yourself with broken pieces and javascript hacks.

    Plugin Author Jules Colle

    (@jules-colle)

    I udpdate the code a bit in version 1.5.4
    It might solve your problem. Please give it a try

    Thread Starter kubus1234

    (@kubus1234)

    Sorry, but it worked with the previous version and your support:
    <script>
    jQuery(‘document’).ready(function() {
    setTimeout(function() {
    jQuery(‘input’).change();
    }, 2000);
    });
    </script>
    But now it works only in Firefox. In Safari, Chrome it is not working.
    My colleague changed the theme and it looks like, there is a conflict with jQuery:
    ReferenceError: Can’t find variable: jQuery

    Plugin Author Jules Colle

    (@jules-colle)

    make sure you put the code in the footer, after all scripts are loaded

    Thread Starter kubus1234

    (@kubus1234)

    Thanks for your support. It was quite difficult to find the right .php in the template-jungle.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Remember Entries not working’ is closed to new replies.