Responsive Add Ons - Version 1.0.3

Version Description

  • Bug Fixes
  • Added styling to textarea

=

Download this release

Release Info

Developer cyberchimps
Plugin Icon 128x128 Responsive Add Ons
Version 1.0.3
Comparing to
See all releases

Code changes from version 1.0.2 to 1.0.3

Files changed (3) hide show
  1. readme.txt +10 -2
  2. responsive-add-ons.php +3 -2
  3. templates/settings.php +1 -1
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate Link: http://cyberchimps.com
4
  Tags: google, yahoo, bing, analytics, verification
5
  Requires at least: 3.0.1
6
  Tested up to: 3.6
7
- Stable tag: 1.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -49,6 +49,10 @@ that it was important to make it inclusive rather than exclusive.
49
  = 1.0.2 =
50
  * Bug Fixes
51
 
 
 
 
 
52
  == Upgrade Notice ==
53
 
54
  = 1.0.0 =
@@ -58,4 +62,8 @@ that it was important to make it inclusive rather than exclusive.
58
  * Bug fixes
59
 
60
  = 1.0.2 =
61
- * Bug fixes
 
 
 
 
4
  Tags: google, yahoo, bing, analytics, verification
5
  Requires at least: 3.0.1
6
  Tested up to: 3.6
7
+ Stable tag: 1.0.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
49
  = 1.0.2 =
50
  * Bug Fixes
51
 
52
+ = 1.0.3 =
53
+ * Bug Fixes
54
+ * Added styling to textarea
55
+
56
  == Upgrade Notice ==
57
 
58
  = 1.0.0 =
62
  * Bug fixes
63
 
64
  = 1.0.2 =
65
+ * Bug fixes
66
+
67
+ = 1.0.3 =
68
+ * Bug Fixes
69
+ * Added styling to textarea
responsive-add-ons.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Responsive Add Ons
4
  Plugin URI: http://cyberchimps.com
5
  Description: Added functionality for the responsive theme
6
- Version: 1.0.2
7
  Author: CyberChimps
8
  Author URI: http://www.cyberchimps.com
9
  License: GPL2
@@ -118,7 +118,7 @@ if( !class_exists( 'Responsive_Addons' ) ) {
118
  public static function is_responsive() {
119
  $theme = wp_get_theme();
120
 
121
- if( $theme->Name == 'Responsive' || $theme->Template == 'Responsive' || $theme->Name == 'Responsive Pro' || $theme->Template == 'Responsive Pro' ) {
122
  return true;
123
  }
124
  else {
@@ -177,6 +177,7 @@ if( !class_exists( 'Responsive_Addons' ) ) {
177
  'heading' => '',
178
  'type' => 'textarea',
179
  'id' => 'site_statistics_tracker',
 
180
  'description' => __( 'Google Analytics, StatCounter, any other or all of them.', 'responsive-addons' ),
181
  'placeholder' => ''
182
  ),
3
  Plugin Name: Responsive Add Ons
4
  Plugin URI: http://cyberchimps.com
5
  Description: Added functionality for the responsive theme
6
+ Version: 1.0.3
7
  Author: CyberChimps
8
  Author URI: http://www.cyberchimps.com
9
  License: GPL2
118
  public static function is_responsive() {
119
  $theme = wp_get_theme();
120
 
121
+ if( $theme->Name == 'Responsive' || $theme->Template == 'responsive' || $theme->Name == 'Responsive Pro' || $theme->Template == 'responsivepro' ) {
122
  return true;
123
  }
124
  else {
177
  'heading' => '',
178
  'type' => 'textarea',
179
  'id' => 'site_statistics_tracker',
180
+ 'class' => array( 'site-tracker' ),
181
  'description' => __( 'Google Analytics, StatCounter, any other or all of them.', 'responsive-addons' ),
182
  'placeholder' => ''
183
  ),
templates/settings.php CHANGED
@@ -60,7 +60,7 @@ if( !defined( 'ABSPATH' ) ) {
60
 
61
  <tr>
62
  <th><?php _e( 'Site Statistics Tracker', 'responsive-addons' ); ?></th>
63
- <td><textarea id="<?php echo esc_attr( 'responsive_addons_options[site_statistics_tracker]' ); ?>" class="large-text" cols="50" rows="30" name="<?php echo esc_attr(
64
  'responsive_addons_options[site_statistics_tracker]' ); ?>"><?php echo ( !empty( $options['site_statistics_tracker'] ) ) ? esc_html( $options['site_statistics_tracker'] ) : ''; ?></textarea>
65
  <label class="description" for="<?php echo esc_attr( 'responsive_addons_options[site_statistics_tracker]' ); ?>">
66
  <?php _e( 'Google Analytics, StatCounter, any other or all of them.', 'responsive-addons' ) ?>
60
 
61
  <tr>
62
  <th><?php _e( 'Site Statistics Tracker', 'responsive-addons' ); ?></th>
63
+ <td><textarea id="<?php echo esc_attr( 'responsive_addons_options[site_statistics_tracker]' ); ?>" class="large-text" cols="50" rows="15" name="<?php echo esc_attr(
64
  'responsive_addons_options[site_statistics_tracker]' ); ?>"><?php echo ( !empty( $options['site_statistics_tracker'] ) ) ? esc_html( $options['site_statistics_tracker'] ) : ''; ?></textarea>
65
  <label class="description" for="<?php echo esc_attr( 'responsive_addons_options[site_statistics_tracker]' ); ?>">
66
  <?php _e( 'Google Analytics, StatCounter, any other or all of them.', 'responsive-addons' ) ?>