Plugin Directory


Ignore:
Timestamp:
02/10/2016 02:43:07 PM (10 years ago)
Author:
Alphawolf
Message:

Version 1.0.3 update

  • Settings page visual improvements (Thanks pixelkicks!)
Location:
goolytics-simple-google-analytics/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • goolytics-simple-google-analytics/trunk/goolytics.php

    r1332306 r1347544  
    22/*
    33Plugin Name: Goolytics - Simple Google Analytics
    4 Version: 1.0.2
     4Version: 1.0.3
    55Plugin URI: http://www.schloebe.de/wordpress/goolytics-plugin/
    66Description: A simple Google Analytics solution that works without slowing down your WordPress installation.
     
    3838 * Define the plugin version
    3939 */
    40 define("GOOLYTICSVERSION", "1.0.2");
     40define("GOOLYTICSVERSION", "1.0.3");
    4141
    4242/**
  • goolytics-simple-google-analytics/trunk/inc/options.php

    r1332306 r1347544  
    5252                    <tr valign="top">
    5353                        <th scope="row" style="width:180px;text-align:right;"><label for="goolytics_web_property_id"><strong><?php _e('Google Analytics ID', self::_NAMESPACE); ?>:</strong><br /><small><a href="https://www.google.com/analytics/web/" target="_blank"><?php _e('(My Analytics accounts)', self::_NAMESPACE); ?></a></small></label></th>
    54                         <td><input type="text" style="width:100px;" id="goolytics_web_property_id" name="goolytics_web_property_id" value="<?php echo get_option('goolytics_web_property_id'); ?>" /> <small><?php _e('Example: UA-0000000-0', self::_NAMESPACE); ?></small></td>
     54                        <td><input type="text" style="width:130px;" id="goolytics_web_property_id" name="goolytics_web_property_id" value="<?php echo get_option('goolytics_web_property_id'); ?>" /> <small><?php _e('Example: UA-0000000-0', self::_NAMESPACE); ?></small></td>
    5555                    </tr>
    5656                    <tr valign="top">
    5757                        <th scope="row" style="width:180px;text-align:right;"><label for="goolytics_anonymize_ip"><strong><?php _e('Anonymize IP?', self::_NAMESPACE); ?>:</strong><br /><small><?php _e('(Recommended for german users)', self::_NAMESPACE); ?></small></label></th>
    5858                        <td>
    59                             <select id="goolytics_anonymize_ip" name="goolytics_anonymize_ip" style="width:100px;">
     59                            <select id="goolytics_anonymize_ip" name="goolytics_anonymize_ip" style="width:130px;">
    6060                                <option value="0" <?php selected(get_option('goolytics_anonymize_ip'), 0); ?>><?php _e('No', self::_NAMESPACE) ; ?></option>
    6161                                <option value="1" <?php selected(get_option('goolytics_anonymize_ip'), 1); ?>><?php _e('Yes', self::_NAMESPACE) ; ?></option>
  • goolytics-simple-google-analytics/trunk/readme.txt

    r1332306 r1347544  
    4646== Changelog ==
    4747
     48= 1.0.3 =
     49* Settings page visual improvements (Thanks pixelkicks!)
     50
    4851= 1.0.2 =
    4952* Settings page visual improvements
Note: See TracChangeset for help on using the changeset viewer.