All Projects → sipuni → static-calltracking

sipuni / static-calltracking

Licence: MIT license
Скрипт подмены номеров для статического коллтрекинга

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to static-calltracking

React Static
⚛️ 🚀 A progressive static site generator for React.
Stars: ✭ 9,946 (+55155.56%)
Mutual labels:  marketing
Marketing For Engineers
A curated collection of marketing articles & tools to grow your product.
Stars: ✭ 11,856 (+65766.67%)
Mutual labels:  marketing
freifunk-faltblatt-6-seiten
freifunk-flyer 6 Seitig
Stars: ✭ 14 (-22.22%)
Mutual labels:  marketing
Truvisory
This project is meant to provide resources to users who want to access good LinkedIn posts which contains resources to learn any Technology, Design, Self-Branding, Motivation etc. You can visit project by:
Stars: ✭ 116 (+544.44%)
Mutual labels:  marketing
Schemebeam
Free viral/referral marketing tool built on React/Node/MySQL
Stars: ✭ 133 (+638.89%)
Mutual labels:  marketing
Resources
This repo is a one stop destination to find resources for learning various domains. You can find the roadmap for any domain here.
Stars: ✭ 198 (+1000%)
Mutual labels:  marketing
Marketing
The symfony.com content
Stars: ✭ 87 (+383.33%)
Mutual labels:  marketing
disposable-phone-numbers
A list of disposable phone numbers
Stars: ✭ 35 (+94.44%)
Mutual labels:  phone-number
Awesome Bootstrappers
👩‍🚀👨‍🚀 Must-read articles, videos and books for coders, marketers and bootstrappers.
Stars: ✭ 143 (+694.44%)
Mutual labels:  marketing
csv2vcf
🔧 Simple script in python to convert CSV files to VCF
Stars: ✭ 66 (+266.67%)
Mutual labels:  phone-number
Footprints
🐾 A simple registration attribution tracking solution for Laravel (UTM Parameters and Referrers)
Stars: ✭ 127 (+605.56%)
Mutual labels:  marketing
Erxes
Free and open fair-code licensed all-in-one growth marketing & management software
Stars: ✭ 1,988 (+10944.44%)
Mutual labels:  marketing
Matomo
Liberating Web Analytics. Star us on Github? +1. Matomo is the leading open alternative to Google Analytics that gives you full control over your data. Matomo lets you easily collect data from websites & apps and visualise this data and extract insights. Privacy is built-in. We love Pull Requests!
Stars: ✭ 15,711 (+87183.33%)
Mutual labels:  marketing
Gatsby Starter Saas Marketing
☁️ A simple one page marketing site starter for SaaS companies and indie hackers
Stars: ✭ 103 (+472.22%)
Mutual labels:  marketing
mmetrics
Easy computation of Marketing Metrics in R
Stars: ✭ 26 (+44.44%)
Mutual labels:  marketing
Landscapeapp
🌄Upstream landscape generation application
Stars: ✭ 96 (+433.33%)
Mutual labels:  marketing
Awesome Startup Tools List
List of all tools (apps, services) that startups should use.
Stars: ✭ 188 (+944.44%)
Mutual labels:  marketing
rust-phonenumber
Library for parsing, formatting and validating international phone numbers.
Stars: ✭ 99 (+450%)
Mutual labels:  phone-number
merkalysis
A marketing tool that helps you to market your products using organic marketing. This tool can potentially save you 1000s of dollars every year. The tool predicts the reach of your posts on social media and also suggests you hashtags for captions in such a way that it increases your reach.
Stars: ✭ 28 (+55.56%)
Mutual labels:  marketing
flutter otp
A Flutter package for iOS and Android for sending and verifying OTP to a Phone number.
Stars: ✭ 59 (+227.78%)
Mutual labels:  phone-number

Статический коллтрекинг

Скрипт подмены номеров

Описание

Этот код подменяет номера телефонов на страницах сайта в зависимости от того, с какого сайта или с какими utm метками пришел посетитель на ваш сайт. Номера для подмены вы задаете самостоятельно. Важно, чтобы у вас была возможность получить статистику звонков на все ваши номера. Благодаря подмене номеров, по статистике звонков вы сможете определить какие источники траффика дают наибольшее количество звонков.

Особенности

  • Есть список предопределенных основных источников траффика (органика, соц.сети, контекст).
  • Умеет подменять заголовки и другой контент на странице.
  • Позволяет подменять несколько номеров одновременно.
  • Визуальный конструктор http://sipuni.com/tools/calltracking

Установка

Сохраните скрипт sipuni-calltracking.js и подключите его на странице.

<script src='/js/sipuni-calltracking.js'></script>

Пример использования

Предположим, нам нужно отследить трафик с Яндекс Директ и двух сайтов: habrahabr.ru и oborot.ru

Добавляем CSS классы ct_phone в элементах, где будет происходить подмена номеров:

<div>Тел.: <span class="ct_phone">+7 888 888-88-88</span></div>

Настраиваем вызов скрипта подмены.

  • В поле sources задаем правила определения источников трафика. Подробнее о настройке правил см. Настройка источников трафика.
  • В поле phones задаем названия источников трафика, и соответсвующие им номера телефонов. Вызов этого скрипта должен происходить после HTML элементов содержащих номера телефонов, или в событии готовности DOM модели.
<script>
    sipuniCalltracking({
      sources: {
        'ydirect':{'utm_source': 'direct.yandex.ru'},
        'articles':{'ref':/(habrahabr|oborot\.ru)/ig}
      },
      phones: [
        {'src':'articles', 'phone':['+75555555555']},
        {'src':'ydirect', 'phone':['+73333333333']}
      ],
    }, window);
</script>

Оглавление

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].