Changeset 1906055
- Timestamp:
- 07/08/2018 06:52:10 PM (8 years ago)
- Location:
- trackit
- Files:
-
- 9 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/controller.php (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/styles.css (added)
-
tags/1.0.2/trackit.php (added)
-
tags/1.0.2/ui.php (added)
-
tags/1.0.2/uninstall.php (added)
-
tags/1.0.2/view-edit.php (added)
-
tags/1.0.2/view-list.php (added)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/trackit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trackit/trunk/readme.txt
r1905025 r1906055 5 5 Requires at least: 2.0 6 6 Tested up to: 4.9.7 7 Stable tag: 1.0.1 8 Requires PHP: 5.2.4 7 Stable tag: 1.0.2 9 8 License: GPLv2 or later 10 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 10 12 Trackit is a simple plugin that allows the user to add a tracking code to anywhere(Header or Footer) inWordPress.11 Trackit is a simple plugin that allows the user to add multiple tracking codes(Google Analytics, Facebook Pixel, JSON schema markup, CSS Javascript) to the Header or Footer of WordPress. 13 12 14 13 == Description == … … 16 15 Trackit is a simple plugin that allows the user to add a tracking code, CSS, Javascript, JSON markup, & ... to anywhere(Header or Footer) in WordPress. Trackit is very simple and straightforward. Trackit allows the user to have multiple tracking codes at the same time. 17 16 18 = Simple to use=17 = Simple to use = 19 18 We designed TrackIt to be simple and straightforward. You just add your tracking code and it will appear on your website. As simple as that. It just works! 20 19 21 = Developed by professionals=20 = Developed by professionals = 22 21 There is a huge difference between a plugin that has been developed by a rookie and plugin that has been developed by a professional team of developers. Our code is clean. We maintain our plugin to adapt to the latest version of Wordpress. Our plugin doesn't put any overhead on your website. 23 22 23 = Manage multiple tracking codes = 24 Trackit allows you to add many tracking codes individually. This will eliminate the risk of error during removal of one tracking codes in future. Other competitor plugins keep all tracking codes in one place which makes it hard to distinguish the beginning and end of each snippet for removal in future. 24 25 25 26 == Installation == … … 52 53 == Changelog == 53 54 55 = 1.0.2 = 56 * Minor content fix. 57 54 58 = 1.0.1 = 55 59 * Second release. … … 66 70 == Upgrade Notice == 67 71 72 = 1.0.2 = 73 Minor content fix. 74 68 75 = 1.0.1 = 69 76 Major bug fixes in the plugin functionality. -
trackit/trunk/trackit.php
r1905025 r1906055 1 1 <?php 2 /**3 * @package Trackit4 * @version 1.0 5 */6 /*7 Plugin Name: TrackIt8 Plugin URI: https://www.seomywp.com/products/trackit9 Description: Trackit is a simple plugin that allows the user to add a tracking code to anywhere in your wordpress(Header & Footer).10 Author: SeoMyWP11 Version: 1.0 12 Author URI: https://www.seomywp.com/13 */2 /** 3 * @package Trackit 4 * @version 1.0.2 5 */ 6 /* 7 Plugin Name: TrackIt 8 Plugin URI: https://www.seomywp.com/products/trackit 9 Description: Trackit is a simple plugin that allows the user to add multiple tracking codes(Google Analytics, Facebook Pixel, JSON schema markup, CSS Javascript) to the Header or Footer of WordPress. 10 Author: SeoMyWP 11 Version: 1.0.2 12 Author URI: https://www.seomywp.com/ 13 */ 14 14 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 15 15 require_once('controller.php');
Note: See TracChangeset
for help on using the changeset viewer.