Plugin Directory

Changeset 1906055


Ignore:
Timestamp:
07/08/2018 06:52:10 PM (8 years ago)
Author:
seomywp
Message:

*Fixed the type in description.
*Fixed the issue in version number.

Location:
trackit
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • trackit/trunk/readme.txt

    r1905025 r1906055  
    55Requires at least: 2.0
    66Tested up to: 4.9.7
    7 Stable tag: 1.0.1
    8 Requires PHP: 5.2.4
     7Stable tag: 1.0.2
    98License: GPLv2 or later
    109License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1110
    12 Trackit is a simple plugin that allows the user to add a tracking code to anywhere(Header or Footer) in WordPress.
     11Trackit 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.
    1312
    1413== Description ==
     
    1615Trackit 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.
    1716
    18 =Simple to use=
     17= Simple to use =
    1918We 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!
    2019
    21 =Developed by professionals=
     20= Developed by professionals =
    2221There 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.
    2322
     23= Manage multiple tracking codes =
     24Trackit 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.
    2425
    2526== Installation ==
     
    5253== Changelog ==
    5354
     55= 1.0.2 =
     56* Minor content fix.
     57
    5458= 1.0.1 =
    5559* Second release.
     
    6670== Upgrade Notice ==
    6771
     72= 1.0.2 =
     73Minor content fix.
     74
    6875= 1.0.1 =
    6976Major bug fixes in the plugin functionality.
  • trackit/trunk/trackit.php

    r1905025 r1906055  
    11<?php
    2     /**
    3     * @package Trackit
    4      * @version 1.0
    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 a tracking code to anywhere in your wordpress(Header & Footer).
    10     Author: SeoMyWP
    11     Version: 1.0
    12     Author URI: https://www.seomywp.com/
    13     */
     2/**
     3 * @package Trackit
     4 * @version 1.0.2
     5 */
     6/*
     7Plugin Name: TrackIt
     8Plugin URI: https://www.seomywp.com/products/trackit
     9Description: 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.
     10Author: SeoMyWP
     11Version: 1.0.2
     12Author URI: https://www.seomywp.com/
     13*/
    1414    defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
    1515    require_once('controller.php');
Note: See TracChangeset for help on using the changeset viewer.