Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

max1985

Users
  • Posts

    644
  • Joined

  • Last visited

Everything posted by max1985

  1. Здравствуйте! Подскажите как скрыть один товар не авторизованным пользователям?
  2. Здравствуйте! Как скрыть блоки: Адрес, Доставки, Оплата, Комментарий, если пользователь нажимает Зарегистрироваться "Нет"
  3. Перенес сюда, но результата по прежнему нет, может опять что-то не так 'add': function(product_id, quantity) { $.ajax({ url: 'index.php?route=checkout/cart/add', type: 'post', data: 'product_id=' + product_id + '&quantity=' + (typeof(quantity) != 'undefined' ? quantity : 1), dataType: 'json', beforeSend: function() { $('#cart > button').button('loading'); }, complete: function() { $('#cart > button').button('reset'); }, success: function(json) { $('.alert, .text-danger').remove(); if (json['redirect']) { location = json['redirect']; } if (json['success']) { $('#content').parent().before('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>'); // Need to set timeout otherwise it wont update the total setTimeout(function () { $('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>'); }, 100); $('html, body').animate({ scrollTop: 0 }, 'slow'); $('#cart > ul').load('index.php?route=common/cart/info ul li'); ga('send', 'event', 'Knopka', 'click_buy'); } },
  4. Привязываю onClick="ga('send', 'event', 'Knopka', 'click_buy');" конкретно к кнопке -работает, так как выше нет... Что за бред? ((
  5. Я пока с Категориями разбираюсь... Но сейчас попробую с карточкой...
  6. В реальном времени и смотрю "События". Пользователи онлайн отображаются, а ниже в таблице пусто!
  7. В консоле все чисто. Код ga перенес в конец цепочки... Результата по прежнему нет.
  8. Здравствуйте! Помогите пожалуйста с настройкой! Код аналитики стоит такой: <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-4861994-10'); // Замените на ваш ID ga('send', 'pageview'); </script> В аналитике создал цель на Добавление товара в корзину, с такими параметрами Категория Knopka Действие click_buy И в файле common.js добавляю строчку ga('send', 'event', 'Knopka', 'click_buy'); Так: var compare = { 'add': function(product_id) { $.ajax({ url: 'index.php?route=product/compare/add', type: 'post', data: 'product_id=' + product_id, dataType: 'json', success: function(json) { $('.alert').remove(); if (json['success']) { ga('send', 'event', 'Knopka', 'click_buy'); $('#content').parent().before('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">&times;</button></div>'); $('#compare-total').html(json['total']); $('html, body').animate({ scrollTop: 0 }, 'slow'); } }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }, 'remove': function() { } } Но в аналитике ничего не видно... Подскажите что не так!
  9. модификаторы, кеш сайта чистили?
  10. У Вас там вроде есть что-то типа такого <ul class="nav navbar-nav"> <li></li> <li></li> <li></li> ... </ul> Можете сюда добавить еще один <li>Текст</li> или после </ul> вставить блок Тут как душе угодно
  11. точно что смешно! Все что Вам надо, уже давно реализовано! Написал выше, с помощью скидок. Создаете необходимые для Вас группы пользователей. И при добавлении или редактировании товара, во вкладке Скидки добавляете каждой группе свою цену. При авторизации покупатель видит свою цену на сайте.
  12. разные цены для разных груп покупателей реализуется стандартными средствами - Скидки
  13. а чего не должно? Правите нужные файлы .tpl, добавляете нужные стили или меняете существующие в .css
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.