Everest Forms – Easy Contact Form and Form Builder - Version 1.0.3

Version Description

  • 23-02-2018 =
  • Fix - From email issue fix for default form
Download this release

Release Info

Developer wpeverest
Plugin Icon 128x128 Everest Forms – Easy Contact Form and Form Builder
Version 1.0.3
Comparing to
See all releases

Code changes from version 1.0.2 to 1.0.3

everest-forms.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Everest Forms
4
  * Plugin URI: https://wpeverest.com/wordpress-plugins/everest-forms/
5
  * Description: Drag and Drop form builder to easily create contact forms and more.
6
- * Version: 1.0.2
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: everest-forms
3
  * Plugin Name: Everest Forms
4
  * Plugin URI: https://wpeverest.com/wordpress-plugins/everest-forms/
5
  * Description: Drag and Drop form builder to easily create contact forms and more.
6
+ * Version: 1.0.3
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: everest-forms
includes/class-everest-forms.php CHANGED
@@ -21,7 +21,7 @@ final class EverestForms {
21
  *
22
  * @var string
23
  */
24
- public $version = '1.0.2';
25
 
26
  /**
27
  * The form data handler instance.
21
  *
22
  * @var string
23
  */
24
+ public $version = '1.0.3';
25
 
26
  /**
27
  * The form data handler instance.
includes/templates/contact.php CHANGED
@@ -63,7 +63,7 @@ $form_template['contact'] = array(
63
  'email' => array(
64
  'evf_to_email' => get_option( 'evf_to_email', get_option( 'admin_email' ) ),
65
  'evf_from_name' => get_option( 'evf_from_name', evf_sender_name() ),
66
- 'evf_from_email' => get_option( 'evf_from_name', evf_sender_address() ),
67
  'evf_email_subject' => get_option( 'evf_email_subject', __( 'New Form Entry', 'everest-forms' ) ),
68
  'evf_email_message' => get_option( 'evf_email_message', '{all_fields}' ),
69
  ),
63
  'email' => array(
64
  'evf_to_email' => get_option( 'evf_to_email', get_option( 'admin_email' ) ),
65
  'evf_from_name' => get_option( 'evf_from_name', evf_sender_name() ),
66
+ 'evf_from_email' => get_option( 'evf_from_address', evf_sender_address() ),
67
  'evf_email_subject' => get_option( 'evf_email_subject', __( 'New Form Entry', 'everest-forms' ) ),
68
  'evf_email_message' => get_option( 'evf_email_message', '{all_fields}' ),
69
  ),
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: WPEverest
3
  Tags: form, form builder, easy form, clean form, login form, contact, contact form
4
  Requires at least: 4.0
5
  Tested up to: 4.9
6
- Stable tag: 1.0.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -68,6 +68,9 @@ Yes, the plugin is designed to work with any themes that have been coded followi
68
 
69
  == Changelog ==
70
 
 
 
 
71
  = 1.0.2 - 15-02-2018 =
72
  * Fix - Box-sizing issue with list tables.
73
  * Fix - Header already sent error on plugin activation.
3
  Tags: form, form builder, easy form, clean form, login form, contact, contact form
4
  Requires at least: 4.0
5
  Tested up to: 4.9
6
+ Stable tag: 1.0.3
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.0.3 - 23-02-2018 =
72
+ * Fix - From email issue fix for default form
73
+
74
  = 1.0.2 - 15-02-2018 =
75
  * Fix - Box-sizing issue with list tables.
76
  * Fix - Header already sent error on plugin activation.
uninstall.php CHANGED
@@ -34,15 +34,13 @@ if ( defined( 'EVF_REMOVE_ALL_DATA' ) && true === EVF_REMOVE_ALL_DATA ) {
34
  // Delete options.
35
  $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE 'evf\_%';" );
36
 
 
 
 
37
  // Delete posts + data.
38
  $wpdb->query( "DELETE FROM {$wpdb->posts} WHERE post_type IN ( 'everest_form' );" );
39
  $wpdb->query( "DELETE meta FROM {$wpdb->postmeta} meta LEFT JOIN {$wpdb->posts} posts ON posts.ID = meta.post_id WHERE posts.ID IS NULL;" );
40
 
41
- // Delete user meta data.
42
- foreach ( array( 'evf_forms_per_page' ) as $meta_key ) {
43
- delete_metadata( 'user', 0, $meta_key, '', true );
44
- }
45
-
46
  // Clear any cached data that has been removed.
47
  wp_cache_flush();
48
  }
34
  // Delete options.
35
  $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE 'evf\_%';" );
36
 
37
+ // Delete usermeta.
38
+ $wpdb->query( "DELETE FROM $wpdb->usermeta WHERE meta_key LIKE 'evf\_%';" );
39
+
40
  // Delete posts + data.
41
  $wpdb->query( "DELETE FROM {$wpdb->posts} WHERE post_type IN ( 'everest_form' );" );
42
  $wpdb->query( "DELETE meta FROM {$wpdb->postmeta} meta LEFT JOIN {$wpdb->posts} posts ON posts.ID = meta.post_id WHERE posts.ID IS NULL;" );
43
 
 
 
 
 
 
44
  // Clear any cached data that has been removed.
45
  wp_cache_flush();
46
  }