1.0.0 - 2010-09-09 - Skyler Moore
Initial creation of ContactBuddy.
1.0.1 - 2010-09-13 - Skyler Moore
Updated the way contactbuddy.css is called
Updated contactbuddy.php:
Added "wp_enqueue_style('contactbuddy_css', $this->_pluginURL . "/css/contactbuddy.css");
wp_print_styles('contactbuddy_css');" lines 56-57.
Removed "$return .= '';" line 166.
1.0.2 - 2010-09-13 - Skyler Moore
Updated stylesheet to block default list-style for form.
1.0.3 - 2010-09-13 - Skyler Moore
Fixed bug added in 1.0.1 printing styles incorrectly
Updated contactbuddy.php:
Removed "wp_print_styles('contactbuddy_css');" line 57.
1.0.4 - 2010-09-14 - Skyler Moore
Readjusting css call and adding css tip.
1.0.5 - 2010-09-14 - Skyler Moore
Adding to contactbuddy.css
Added "list-style: none !important;" to .contactbuddy-form ul, .contactbuddy-form ul li".
1.0.6 - 2011-03-31 - Skyler Moore
Adding check if _recaptcha_qsencode() has already been declared.
_recaptchalib.php:
Added if (!function_exists()), if (!defined()), and if (!class_exists()) checks to prevent redeclaring errors.
Adding Optional contactbuddy default CSS.
admin.php added checkbox and validation.
contactbuddy.php added CSS optional.
1.0.7 - 2011-06-09 - Skyler Moore
Adding new style options.
Added
contact-compressed.css
contact-dark.css
contact-fat.css
contact-fullwidth.css
contact-light.css
contact-skinny.css
Updated classes/admin.php:
Line 45 Removed:
if(isset($_POST[$this->_var . '-defaultcss']) && ($_POST[$this->_var . '-defaultcss'] == 'on')) {
$_POST[$this->_var . '-defaultcss'] = 'on';
} else {
$_POST[$this->_var . '-defaultcss'] = 'off';
}
Replaced
|
_options['defaultcss'] == 'on') { $checked = ' checked '; }
echo ' Enabled | ';
?>
With
|
'default',
'light' => 'light',
'dark' => 'dark',
'skinny' => 'skinny',
'fat' => 'fat',
'full' => 'full width',
'compressed' => 'compressed',
'off' => 'no styles'
); ?>
|
Updated contactbuddy.php:
Line 142 Replaced:
wp_enqueue_style('contactbuddy_css', $this->_pluginURL . "/css/contactbuddy.css");
With:
if ( $this->_options['defaultcss'] == 'on' ) {
$stylesheet = 'contactbuddy';
} else {
$stylesheet = 'contact-' . $this->_options['defaultcss'];
}
wp_enqueue_style('contactbuddy_css', $this->_pluginURL . "/css/' . $stylesheet . '.css");
Added label tags to form.
1.0.8 - 2011-06-10 - Skyler Moore
Added new style sheets
1.0.9 - 2012-10-10 - Josh Benham
Updated plugin compatibility with WordPress.org standards.
1.1.0 - 2014-9-10 - Josh Benham
Updated admin UI.
Updated contactbuddy form styles.
Added layout preview.
Added settings nag on activation.
Fixed headers already sent bug.
Fixed php strict-standards messages.
1.1.1 - 2014-09-10 - Josh Benham
Fixed readme.txt
1.1.2 - 2014-09-10 - Josh Benham
Added lib directory that was missing.
1.1.3 - 2014-09-10 - Josh Benham
Adding additional images
1.1.4 - 2014-09-10 - Josh Benham
Syncing version numbers across the board.
1.1.5 - 2014-09-11 - Josh Benham
Removed random character.
1.1.6 - 2014-09-11 - Josh Benham
Updated lib/icon-fonts to the latest.
Removed git file.
1.1.7 - 2015-09-01 - Gerroald Barron
WordPress Compatibility: Updated widgets to no longer use PHP4-style constructors in order to be compatible with their deprecation in WordPress 4.3.
1.1.8 - 2015-11-12 - Gerroald Barron
Updated for PHP 7 compatibility.