• Resolved andreasebneter

    (@andreasebneter)


    On our website, we use Everest Forms for some signup forms. When Extended Post Status is active, the Entries from Everest Forms do not appear in the backend.

    They are logged, but somehow Everest Forms does not display them.

    Your plugin does exactly what I need it to. And I have had no luck finding another plugin that is as good as yours.

    But with this conflict with Everest Forms, I can’t use it and would very much appreciate it if you could find a solution.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Felix W.

    (@welly2103)

    Hi @andreasebneter,

    I’m not familiar with the plugin so far, but it sure looks like there are some statuses being processed under the hood there as well. I was able to reproduce the error, but I’m not quite sure if my fix is enough for you.

    If the status query is left blank via hook in Everest Forms, it seems to work. I haven’t tested all areas of the plugin in detail, but at first glance this seems like a workable solution.

    You would need to extend your functions.php in your theme to include the following snippet:

    
    add_filter('everest_forms_get_multiple_forms_args', function($args, $content_only) {
        $args['status'] = [];
        return $args;
    }, 10, 2);
    

    If you don’t know exactly how to do this, feel free to get back to me.

    Greetings Felix

    Thread Starter andreasebneter

    (@andreasebneter)

    Hello Felix
    Thanks for the swift reply. I added the snippet, and it seems to do the job so far. Thanks!

    I’ll get back to you if I find a bug later on.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with other Pugin: Everest Forms’ is closed to new replies.