Contact Form Clean and Simple - Version 4.3.4

Version Description

  • Added the wordpress page of contact form to the email
  • Removed link in main contact form view
Download this release

Release Info

Developer megnicholas
Plugin Icon wp plugin Contact Form Clean and Simple
Version 4.3.4
Comparing to
See all releases

Code changes from version 4.3.3 to 4.3.4

class.cscf_contact.php CHANGED
@@ -125,6 +125,7 @@ class cscf_Contact
125
  //message
126
  $message="From: " . $this->Name . "\n\n";
127
  $message.="Email: " . $this->Email . "\n\n";
 
128
  $message.="Message:\n\n" . $this->Message;
129
 
130
  $result = (wp_mail(cscf_PluginSettings::RecipientEmails() , cscf_PluginSettings::Subject(), stripslashes($message), $header));
125
  //message
126
  $message="From: " . $this->Name . "\n\n";
127
  $message.="Email: " . $this->Email . "\n\n";
128
+ $message.="Page URL: " . get_permalink($this->PostID) . "\n\n";
129
  $message.="Message:\n\n" . $this->Message;
130
 
131
  $result = (wp_mail(cscf_PluginSettings::RecipientEmails() , cscf_PluginSettings::Subject(), stripslashes($message), $header));
clean-and-simple-contact-form-by-meg-nicholas.php CHANGED
@@ -7,7 +7,7 @@
7
  Plugin Name: Clean and Simple Contact Form
8
  Plugin URI: http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form
9
  Description: A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
10
- Version: 4.3.3
11
  Author: Meghan Nicholas
12
  Author URI: http://www.megnicholas.co.uk
13
  License: GPLv2 or later
@@ -52,7 +52,7 @@ if (!defined('CSCF_PLUGIN_URL')) define('CSCF_PLUGIN_URL', WP_PLUGIN_URL . '/' .
52
 
53
  if (!defined('CSCF_VERSION_KEY')) define('CSCF_VERSION_KEY', 'cscf_version');
54
 
55
- if (!defined('CSCF_VERSION_NUM')) define('CSCF_VERSION_NUM', '4.3.3');
56
 
57
  if (!defined('CSCF_OPTIONS_KEY')) define('CSCF_OPTIONS_KEY', 'cscf_options');
58
 
7
  Plugin Name: Clean and Simple Contact Form
8
  Plugin URI: http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form
9
  Description: A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup.
10
+ Version: 4.3.4
11
  Author: Meghan Nicholas
12
  Author URI: http://www.megnicholas.co.uk
13
  License: GPLv2 or later
52
 
53
  if (!defined('CSCF_VERSION_KEY')) define('CSCF_VERSION_KEY', 'cscf_version');
54
 
55
+ if (!defined('CSCF_VERSION_NUM')) define('CSCF_VERSION_NUM', '4.3.4');
56
 
57
  if (!defined('CSCF_OPTIONS_KEY')) define('CSCF_OPTIONS_KEY', 'cscf_options');
58
 
readme.txt CHANGED
@@ -5,8 +5,8 @@ License: GPLv2 or later
5
  License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: simple, contact, form, contact button, contact form, contact form plugin, akismet, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
7
  Requires at least: 3.3
8
- Tested up to: 3.8
9
- Stable tag: 4.3.3
10
 
11
  A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
12
 
@@ -201,6 +201,9 @@ the reCAPTCHA for the contact form will be displayed correctly but not in the co
201
  The comments form will never validate due to no supplied reCAPTCHA code.
202
 
203
  == Changelog ==
 
 
 
204
  = 4.3.3 =
205
  * Before overriding the from address, check that another plugin has not done it first.
206
  Any plugin that overrides 'from email address' and 'from name' such as wp-mail-smtp plugin will take precedence over the settings in this plugin.
@@ -308,6 +311,8 @@ Polish thanks to Patryk Peas
308
 
309
 
310
  == Upgrade Notice ==
 
 
311
  = 4.3.3 =
312
  Hebrew Language added, name field moved to top of form, added 'reply-to'
313
  = 4.3.2 =
5
  License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: simple, contact, form, contact button, contact form, contact form plugin, akismet, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
7
  Requires at least: 3.3
8
+ Tested up to: 3.9
9
+ Stable tag: 4.3.4
10
 
11
  A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
12
 
201
  The comments form will never validate due to no supplied reCAPTCHA code.
202
 
203
  == Changelog ==
204
+ = 4.3.4 =
205
+ * Added the wordpress page of contact form to the email
206
+ * Removed link in main contact form view
207
  = 4.3.3 =
208
  * Before overriding the from address, check that another plugin has not done it first.
209
  Any plugin that overrides 'from email address' and 'from name' such as wp-mail-smtp plugin will take precedence over the settings in this plugin.
311
 
312
 
313
  == Upgrade Notice ==
314
+ = 4.3.4 =
315
+ Email now includes page url of contact form, removed link in main contact form view
316
  = 4.3.3 =
317
  Hebrew Language added, name field moved to top of form, added 'reply-to'
318
  = 4.3.2 =
views/contact-form.view.php CHANGED
@@ -1,7 +1,7 @@
1
  <div id="cscf" class="cscfBlock">
2
  <div class="cscfVersion" style="display:none;">
3
- <a href="http://www.megnicholas.co.uk?version=<?php echo urlencode($version); ?>">Clean and Simple WordPress Contact Form by Meg Nicholas - WordPress Developer</a>
4
- </div>
5
  <div class="cscfMessageSent" style="display:none;">
6
  <?php echo $messageSentView->Render(); ?>
7
  </div>
1
  <div id="cscf" class="cscfBlock">
2
  <div class="cscfVersion" style="display:none;">
3
+ Clean and Simple WordPress Contact Form by Meg Nicholas - WordPress Developer. Version <?php echo $version; ?>
4
+ </div>
5
  <div class="cscfMessageSent" style="display:none;">
6
  <?php echo $messageSentView->Render(); ?>
7
  </div>