Changeset 1957367
- Timestamp:
- 10/16/2018 09:43:21 AM (7 years ago)
- Location:
- matomo-tracker/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
inc/frontend/class-frontend.php (modified) (1 diff)
-
matomo-tracker.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
matomo-tracker/trunk/README.txt
r1949250 r1957367 6 6 Tested up to: 4.9.8 7 7 Requires PHP: 5.6.0 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 69 69 * Now uses enqueue script to enqueue external JS File (No more defer or async option) 70 70 * Added an option to disable logged-in users tracking 71 72 = 1.2.3 = 73 * Fixed track.js loading in header -
matomo-tracker/trunk/inc/frontend/class-frontend.php
r1949242 r1957367 120 120 $piwikJsFile = $this->plugin_name_dir . 'inc/frontend/track.js'; 121 121 file_put_contents($piwikJsFile, $this->get_javascript_tracking_code()); 122 wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'track.js', array(), $this->version, false );122 wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'track.js', array(), $this->version, true ); 123 123 } 124 124 } -
matomo-tracker/trunk/matomo-tracker.php
r1949250 r1957367 16 16 * Plugin URI: https://wordpress.org/plugins/matomo-tracker/ 17 17 * Description: Matomo tracker adds matomo (formerly piwik) tracking code to your website while hiding your matomo installation url 18 * Version: 1.2. 218 * Version: 1.2.3 19 19 * Author: Niroma 20 20 * Author URI: https://www.niroma.net/ … … 40 40 define( NS . 'PLUGIN_NAME', 'matomo-tracker' ); 41 41 42 define( NS . 'PLUGIN_VERSION', '1.2. 2' );42 define( NS . 'PLUGIN_VERSION', '1.2.3' ); 43 43 44 44 define( NS . 'PLUGIN_NAME_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.