Title: Saved Data
Last modified: April 8, 2020

---

# Saved Data

 *  Resolved [z0zel123](https://wordpress.org/support/users/z0zel123/)
 * (@z0zel123)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/saved-data/)
 * Hello, am I able to have the option somehow to make the plugin not save the data?
   I don’t want to keep any data from the form in my database.
 * Congrats on the plugin really customizable and easy!
    -  This topic was modified 6 years, 1 month ago by [z0zel123](https://wordpress.org/support/users/z0zel123/).

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

 *  Plugin Contributor [vadim8vz](https://wordpress.org/support/users/vadim8vz/)
 * (@vadim8vz)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/saved-data/#post-12647343)
 * Hello! You may use one of this filters or action in your function.php theme file:
 *     ```
       add_action('admin_bar_menu', function (){
       	if(defined( 'VDZ_CALL_BACK_DATA_FILE') && file_exists(VDZ_CALL_BACK_DATA_FILE)){
       		unlink( VDZ_CALL_BACK_DATA_FILE);
       	}
       });
       ```
   
 * or
 *     ```
       add_filter('wp_mail',function ($args){
       	if(defined( 'VDZ_CALL_BACK_DATA_FILE') && file_exists(VDZ_CALL_BACK_DATA_FILE)){
       		unlink( VDZ_CALL_BACK_DATA_FILE);
       	}
       	return $args;
       }, 100,1);
       ```
   
 * or
 *     ```
       add_filter( 'wp_mail_from_name', function(){
       	if(defined( 'VDZ_CALL_BACK_DATA_FILE') && file_exists(VDZ_CALL_BACK_DATA_FILE)){
       		unlink( VDZ_CALL_BACK_DATA_FILE);
       	}
       	return 'Robots';
       } );
       ```
   
 * Thank you for your comment! 😉
    -  This reply was modified 6 years, 1 month ago by [vadim8vz](https://wordpress.org/support/users/vadim8vz/).
 *  Thread Starter [z0zel123](https://wordpress.org/support/users/z0zel123/)
 * (@z0zel123)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/saved-data/#post-12656869)
 * Thank you VadimZ,
 * Everything works like we wanted to!
 *  Plugin Contributor [vadim8vz](https://wordpress.org/support/users/vadim8vz/)
 * (@vadim8vz)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/saved-data/#post-12656918)
 * You are welcome! In new version I add the button in data section and update today
   plugin. If you want – download and use new version for manual remove all data
   in admin panel
    -  This reply was modified 6 years, 1 month ago by [vadim8vz](https://wordpress.org/support/users/vadim8vz/).

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

The topic ‘Saved Data’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/vdz-call-back_9fcc77.svg)
 * [VDZ CallBack Plugin](https://wordpress.org/plugins/vdz-call-back/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/vdz-call-back/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/vdz-call-back/)
 * [Active Topics](https://wordpress.org/support/plugin/vdz-call-back/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/vdz-call-back/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/vdz-call-back/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [vadim8vz](https://wordpress.org/support/users/vadim8vz/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/saved-data/#post-12656918)
 * Status: resolved