Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 379db1cb39 | |||
| e824a258ea | |||
| cd2985a170 | |||
| a19b4fe212 | |||
| 3bfb7d040d | |||
| 7dab17905b | |||
| a3a3565189 | |||
| 3f82f42e1e | |||
| 0de00c5a34 | |||
| 0daee07086 | |||
| 2619539415 | |||
| 9b01d79955 | |||
| 17f21a25bb | |||
| 8c523e8c65 | |||
| d7956e24a6 | |||
| eaafbec1ea | |||
| 4ba5f6492f | |||
| a8c4d22b51 | |||
| 92f08b5174 | |||
| d86a531495 | |||
| f894cec38b | |||
| 3b10299249 | |||
| 2098032d81 | |||
| 61161e6335 | |||
| 327681d3db | |||
| 68c5bfe275 | |||
| c3f116fbc3 | |||
| b8b3c19bfc | |||
| e95062c6eb | |||
| 2f4c472a41 | |||
| 3f0f1d4408 | |||
| 225a958cb4 | |||
| a42f3c7e71 | |||
| ddf8428884 |
@@ -1,4 +1,5 @@
|
||||
User-agent: *
|
||||
Disallow: /
|
||||
Allow: /
|
||||
Disallow: */admin/*
|
||||
|
||||
Host: dev.tripwb.com
|
||||
Host: tripwb.com
|
||||
@@ -21,6 +21,27 @@ function SendRegistrationForm(el){
|
||||
window.sessionStorage.removeItem('mailingSubscribeRequired')
|
||||
window.sessionStorage.removeItem('email')
|
||||
|
||||
fbq('track', 'Contact');
|
||||
|
||||
|
||||
ttq.identify({
|
||||
"email": "<hashed_email_address>", // string. The email of the customer if available. It must be hashed with SHA-256 on the client side.
|
||||
"phone_number": "<hashed_phone_number>", // string. The phone number of the customer if available. It must be hashed with SHA-256 on the client side.
|
||||
"external_id": "<hashed_extenal_id>" // string. Any unique identifier, such as loyalty membership IDs, user IDs, and external cookie IDs.It must be hashed with SHA-256 on the client side.
|
||||
});
|
||||
|
||||
ttq.track('CompleteRegistration', {
|
||||
"contents": [
|
||||
{
|
||||
"content_id": "<content_identifier>", // string. ID of the product. Example: "1077218".
|
||||
"content_type": "<content_type>", // string. Either product or product_group.
|
||||
"content_name": "<content_name>" // string. The name of the page or product. Example: "shirt".
|
||||
}
|
||||
],
|
||||
"value": "<content_value>", // number. Value of the order or items sold. Example: 100.
|
||||
"currency": "<content_currency>" // string. The 4217 currency code. Example: "USD".
|
||||
});
|
||||
|
||||
|
||||
if(typeof ym === 'function'){
|
||||
ym(97070898,'reachGoal','Registration')
|
||||
@@ -29,7 +50,6 @@ function SendRegistrationForm(el){
|
||||
console.log('Скрипт Яндекс.Метрики не найден. Статистика не будет отправлена.');
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
error: function (data, exception){
|
||||
document.querySelector(".register").innerHTML = data.responseJSON.html
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<a href="https://vk.com/club226251027" target="_blank"><img class="svg" src="/static/img/svg/vk.svg"></a>
|
||||
<a href="https://www.tiktok.com/@.tripwithbonus?_t=8njaU5JVCBK&_r=1" target="_blank"><img class="svg" src="/static/img/svg/tiktok.svg"></a>
|
||||
<a href="https://youtube.com/@twb-bonus?si=k_YFiY86vBdvvHFN" target="_blank"><img class="svg" src="/static/img/svg/Youtube.svg"></a>
|
||||
<a href="https://t.me/+XA6A8Ls7fYw2Yzli" target="_blank"><img class="svg" src="/static/img/svg/Telegram.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="second-column">
|
||||
|
||||
@@ -9,7 +9,8 @@
|
||||
<span class="user_name_messenger">{{ item.owner.last_name }} {{ item.owner.first_name }}</span>
|
||||
<span class="last-message-messenger-user-tab">{{ item.name }}</span>
|
||||
</div>
|
||||
{% if item.unread_msgs_count %}
|
||||
{# {% if item.unread_msgs_count %}#}
|
||||
{% if unanswered_msgs_count > 0 %}
|
||||
<div class="right-part-tab-user">
|
||||
<div class="cost-messages-in-user-tab-messenger">
|
||||
{# <span>{{ item.unread_msgs_count }}</span>#}
|
||||
|
||||
Reference in New Issue
Block a user