Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

letu4igolandec

Новачок
  
  • Публікації

    14
  • З нами

  • Відвідування

Усі публікації користувача letu4igolandec

  1. При создании интернет-магазина встретился с такой проблемой: Не смог найти модуль для вывода корзины слева/справа для opencart 1.5.4 Единственно что более менее корректно работающее: http://www.opencart.com/index.php?route=extension/extension/info&extension_id=5971 Но и тут не всё просто, а именно, товар добавляется в корзину, но не отображается, а появляется только после перезагрузки страницы. Нашёл вот такой комментарий: Im usuing opencart 1.5.4 and after WUNJO fix for reload in commons.js: In catalog/view/javascript/commons.js add "$(".box-content",sidecart).reload();" before last bracket } in function "reloadMiniCartContent(product_id)", these correct update or refresh page. Cart reloads nicely on category list, nut it does not on product page i still need to refresh it there. I tried adding: /*----side cart addition-----*/ reloadMiniCartContent(product_id); in product.tpl in "if (json['success']{"function in exact the same place as in commons.js but it doeas not work. With kwok fix for delete products it would work for opencart 1.5.4 if this one issue is done. Thx for any help you can provide. Мой commons.js Подскажите кто в коде силён, что куда дописывать? $(document).ready(function() { /* Search */ $('.button-search').bind('click', function() { url = $('base').attr('href') + 'index.php?route=product/search'; var filter_name = $('input[name=\'filter_name\']').attr('value') if (filter_name) { url += '&filter_name=' + encodeURIComponent(filter_name); } location = url; }); $('#header input[name=\'filter_name\']').keydown(function(e) { if (e.keyCode == 13) { url = $('base').attr('href') + 'index.php?route=product/search'; var filter_name = $('input[name=\'filter_name\']').attr('value') if (filter_name) { url += '&filter_name=' + encodeURIComponent(filter_name); } location = url; } }); /* Ajax Cart */ $("#cart").hover( function () { $('#cart .content').stop(true, true).show('slow'); $.ajax({ url: 'index.php?route=checkout/cart/update', dataType: 'json', success: function(json) { if (json['output']) { $('#cart .content').html(json['output']); } } }); }, function () { $('#cart .content').stop(true, true).hide('slow'); } ); /* Mega Menu */ $('#menu ul > li > a + div').each(function(index, element) { // IE6 & IE7 Fixes if ($.browser.msie && ($.browser.version == 7 || $.browser.version == 6)) { var category = $(element).find('a'); var columns = $(element).find('ul').length; $(element).css('width', (columns * 143) + 'px'); $(element).find('ul').css('float', 'left'); } var menu = $('#menu').offset(); var dropdown = $(this).parent().offset(); i = (dropdown.left + $(this).outerWidth()) - (menu.left + $('#menu').outerWidth()); if (i > 0) { $(this).css('margin-left', '-' + (i + 5) + 'px'); } }); // IE6 & IE7 Fixes if ($.browser.msie) { if ($.browser.version <= 6) { $('#column-left + #column-right + #content, #column-left + #content').css('margin-left', '195px'); $('#column-right + #content').css('margin-right', '195px'); $('.box-category ul li a.active + ul').css('display', 'block'); } if ($.browser.version <= 7) { $('#menu > ul > li').bind('mouseover', function() { $(this).addClass('active'); }); $('#menu > ul > li').bind('mouseout', function() { $(this).removeClass('active'); }); } } $('.success img, .warning img, .attention img, .information img').live('click', function() { $(this).parent().fadeOut('slow', function() { $(this).remove(); }); }); }); function addToCart(product_id) { $.ajax({ url: 'index.php?route=checkout/cart/update', type: 'post', data: 'product_id=' + product_id, dataType: 'json', success: function(json) { $('.success, .warning, .attention, .information, .error').remove(); if (json['redirect']) { location = json['redirect']; } if (json['error']) { if (json['error']['warning']) { $('#notification').html('<div class="warning" style="display: none;">' + json['error']['warning'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>'); $('.warning').fadeIn('slow'); $('html, body').animate({ scrollTop: 0 }, 'slow'); } } if (json['success']) { $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>'); $('.success').fadeIn('slow'); $('#cart_total').html(json['total']); $('html, body').animate({ scrollTop: 0 }, 'slow'); } } }); } function removeCart(key) { $.ajax({ url: 'index.php?route=checkout/cart/update', type: 'post', data: 'remove=' + key, dataType: 'json', success: function(json) { $('.success, .warning, .attention, .information').remove(); if (json['output']) { $('#cart_total').html(json['total']); $('#cart .content').html(json['output']); } } }); } function removeVoucher(key) { $.ajax({ url: 'index.php?route=checkout/cart/update', type: 'post', data: 'voucher=' + key, dataType: 'json', success: function(json) { $('.success, .warning, .attention, .information').remove(); if (json['output']) { $('#cart_total').html(json['total']); $('#cart .content').html(json['output']); } } }); } function addToWishList(product_id) { $.ajax({ url: 'index.php?route=account/wishlist/update', type: 'post', data: 'product_id=' + product_id, dataType: 'json', success: function(json) { $('.success, .warning, .attention, .information').remove(); if (json['success']) { $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>'); $('.success').fadeIn('slow'); $('#wishlist_total').html(json['total']); $('html, body').animate({ scrollTop: 0 }, 'slow'); } } }); } function addToCompare(product_id) { $.ajax({ url: 'index.php?route=product/compare/update', type: 'post', data: 'product_id=' + product_id, dataType: 'json', success: function(json) { $('.success, .warning, .attention, .information').remove(); if (json['success']) { $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>'); $('.success').fadeIn('slow'); $('#compare_total').html(json['total']); $('html, body').animate({ scrollTop: 0 }, 'slow'); } } }); }
  2. Мда, не на одну тему не ответили толком. Какашечный форум. Только понты колотят все, а толку 0.
  3. Если б знал как сформулировать, даже не так, если б знал как это правильно называется, воспользовался б гуглом, или сам исправил, а сюда я и пришёл, за тем чтоб посоветовали, помогли разобраться. Всего доброго.
  4. Ахаххаха, в ответ -1, мммдааа. Ребят, ну что, может кто посоветует чего пожалуйста.
  5. Мммм... Я так и думал... (и тишина) +1 пост, поздравляю вас.
  6. Прошу прощения, хоть в какую сторону копать? Какие файлы могут быть изменены? или какие файлы выложить?
  7. Помогите пожалуйста выровнять шаблон, установил модуль recall. И чёрт меня дёрнул, поставить модуль с правой стороны сайта. Всё съехало, как бы шаблон, выровнялся по центру, тексты, модули: рекомендуемое. Было, 5 товаров в строку, сейчас 4 и один под ними. Ребят, помогайте, уже задавал такой вопрос, как то тишина была. Выручайте, замучился. Скрин прикрепил:
  8. Спасибо:) а я сижу мозги ломаю:) ловите +)) Господа админы, проблема решена:) можно закрывать тему))
  9. Ребят хелп, замучился, не пойму, как добавить товар в рекомендуемое, вот скрин прикрепил, как что куда вставлять, все мозги сломал.... Может кто поможет, и скрин магазина прикреплю.
  10. Спасибо:) Разобрался:) Папки подписаны кириллицей:) Переименовал на лат. и всё ок:) спс:)
  11. Всем привет. Столкнулся с проблемой, "изначально всё было хорошо" затем ни с того перестали отображаться изображения, прикрепил скрин, может кто встречался с этим?
×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.