Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Matthew Muro

    (@mmuro)

    In the Pro version, there is a filter that lets you optionally disable saving to the entries table before the email is sent out.

    Thread Starter nicktonic

    (@nicktonic)

    bought it – works, thanks!

    Hi – where is the setting for this filter please?

    Thread Starter nicktonic

    (@nicktonic)

    the filter is named vfb_entries_save_new (works only in the pro version),
    you can disable saving in database with the following lines (e.g. in your functions.php):

    add_filter('vfb_entries_save_new', 'vfb_entries_save_new_filter');
    
    function vfb_entries_save_new_filter($save, $form_id) {
        return false;
    }

    Thanks nicktonic – that’s good to know.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘save to database optional?!’ is closed to new replies.