Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.1 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.1 KB

Hotjar for Yii2

This extension provides easy way to add Hotjar tracking in your Yii2 application.

Based on https://github.com/cybercog/yii2-google-analytics

Installation

The preferred way to install this extension is through composer.

Either run

$ php composer.phar require thiagotalma/yii2-hotjar "*

or add

"thiagotalma/yii2-hotjar": "*"

to the require section of your composer.json file.

Usage

In your /views/layouts/main.php add

use talma\hotjar\widgets\HotjarTracking;

Then before </head> add following code

<?= HotjarTracking::widget(
    [
        'trackingId' => 'XXXXXXXX'
    ]
) ?>

Advanced usage

If you need the output without script tag to combined with registerJs or registerJsFile as renderPartial to add dependency or positioning configuration, you can use omitScriptTag true to disable script tag, example:

<?= $this->registerJs(
    HotjarTracking::widget([
        'trackingId' => 'XXXXXXXX',
        'omitScriptTag' => true
    ]), \yii\web\View::POS_END
); ?>