Не работает кнопка купить

Тема в разделе "Обо всём", создана пользователем Dioli, 3 фев 2017.

  1. vo_it

    vo_it Новичок

    Сообщения:
    3
    Симпатии:
    0
    в теме одна дефолтная тема стоит, тут catalog/view/theme/default/template/product/product.tpl или product.twig
    стоит
    error: function(xhr, ajaxOptions, thrownError) {
    alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
    }
     
  2. solunski.d

    solunski.d Эксперт

    Сообщения:
    1.570
    Симпатии:
    437
    Там проблема в скрипте.
    Он разрешает добавить в любом случае в корзину, если нету опций, но в корзине сообщит о том что минимальный заказ от 3.
     
  3. solunski.d

    solunski.d Эксперт

    Сообщения:
    1.570
    Симпатии:
    437
    На сайте отображается по другому, обновите модификатор... или Total Comander выкинуть на помойку, ибо самое место..
     
  4. vo_it

    vo_it Новичок

    Сообщения:
    3
    Симпатии:
    0
    вот файл catalog/view/theme/default/template/product/product.twig
    Код:
    //--></script>
    <script type="text/javascript"><!--
    $('#button-cart').on('click', function() {
        $.ajax({
            url: 'index.php?route=checkout/cart/add',
            type: 'post',
            data: $('#product input[type=\'text\'], #product input[type=\'hidden\'], #product input[type=\'radio\']:checked, #product input[type=\'checkbox\']:checked, #product select, #product textarea'),
            dataType: 'json',
            beforeSend: function() {
                $('#button-cart').button('loading');
            },
            complete: function() {
                $('#button-cart').button('reset');
            },
            success: function(json) {
                $('.alert-dismissible, .text-danger').remove();
                $('.form-group').removeClass('has-error');
    
                if (json['error']) {
                    if (json['error']['option']) {
                        for (i in json['error']['option']) {
                            var element = $('#input-option' + i.replace('_', '-'));
    
                            if (element.parent().hasClass('input-group')) {
                                element.parent().after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
                            } else {
                                element.after('<div class="text-danger">' + json['error']['option'][i] + '</div>');
                            }
                        }
                    }
    
                    if (json['error']['recurring']) {
                        $('select[name=\'recurring_id\']').after('<div class="text-danger">' + json['error']['recurring'] + '</div>');
                    }
    
                    // Highlight any found errors
                    $('.text-danger').parent().addClass('has-error');
                }
    
                if (json['success']) {
                    $('.breadcrumb').after('<div class="alert alert-success alert-dismissible">' + json['success'] + '<button type="button" class="close" data-dismiss="alert">&times;</button></div>');
    
                    $('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
    
                    $('html, body').animate({ scrollTop: 0 }, 'slow');
    
                    $('#cart > ul').load('index.php?route=common/cart/info ul li');
                }
            },
            error: function(xhr, ajaxOptions, thrownError) {
                alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
            }
        });
    });
    //--></script>
    <script type="text/javascript"><!--
    $('.date').datetimepicker({
        language: '{{ datepicker }}',
        pickTime: false
    });
    
    $('.datetime').datetimepicker({
        language: '{{ datepicker }}',
        pickDate: true,
        pickTime: true
    });
    
    $('.time').datetimepicker({
        language: '{{ datepicker }}',
        pickDate: false
    });
    
    $('button[id^=\'button-upload\']').on('click', function() {
        var node = this;
    
        $('#form-upload').remove();
    
        $('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="file" /></form>');
    
        $('#form-upload input[name=\'file\']').trigger('click');
    
        if (typeof timer != 'undefined') {
            clearInterval(timer);
        }
    
        timer = setInterval(function() {
            if ($('#form-upload input[name=\'file\']').val() != '') {
                clearInterval(timer);
    
                $.ajax({
                    url: 'index.php?route=tool/upload',
                    type: 'post',
                    dataType: 'json',
                    data: new FormData($('#form-upload')[0]),
                    cache: false,
                    contentType: false,
                    processData: false,
                    beforeSend: function() {
                        $(node).button('loading');
                    },
                    complete: function() {
                        $(node).button('reset');
                    },
                    success: function(json) {
                        $('.text-danger').remove();
    
                        if (json['error']) {
                            $(node).parent().find('input').after('<div class="text-danger">' + json['error'] + '</div>');
                        }
    
                        if (json['success']) {
                            alert(json['success']);
    
                            $(node).parent().find('input').val(json['code']);
                        }
                    },
                    error: function(xhr, ajaxOptions, thrownError) {
                        alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
                    }
                });
            }
        }, 500);
    });
    //--></script>
    <script type="text/javascript"><!--
    $('#review').delegate('.pagination a', 'click', function(e) {
        e.preventDefault();
    
        $('#review').fadeOut('slow');
    
        $('#review').load(this.href);
    
        $('#review').fadeIn('slow');
    });
    
    $('#review').load('index.php?route=product/product/review&product_id={{ product_id }}');
    
    $('#button-review').on('click', function() {
        $.ajax({
            url: 'index.php?route=product/product/write&product_id={{ product_id }}',
            type: 'post',
            dataType: 'json',
            data: $("#form-review").serialize(),
            beforeSend: function() {
                $('#button-review').button('loading');
            },
            complete: function() {
                $('#button-review').button('reset');
            },
            success: function(json) {
                $('.alert-dismissible').remove();
    
                if (json['error']) {
                    $('#review').after('<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> ' + json['error'] + '</div>');
                }
    
                if (json['success']) {
                    $('#review').after('<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> ' + json['success'] + '</div>');
    
                    $('input[name=\'name\']').val('');
                    $('textarea[name=\'text\']').val('');
                    $('input[name=\'rating\']:checked').prop('checked', false);
                }
            }
        });
    });
    
    $(document).ready(function() {
        $('.thumbnails').magnificPopup({
            type:'image',
            delegate: 'a',
            gallery: {
                enabled: true
            }
        });
    });
    //--></script>
    {{ footer }}
    
     
  5. solunski.d

    solunski.d Эксперт

    Сообщения:
    1.570
    Симпатии:
    437
    В файле верно, но на сайте нет. Надо разбираться что не так.
     
  6. vo_it

    vo_it Новичок

    Сообщения:
    3
    Симпатии:
    0
    Кэшь очистил не помогло(((
     
  7. solunski.d

    solunski.d Эксперт

    Сообщения:
    1.570
    Симпатии:
    437
    У вас профиль стоит как женский.
    Дело в скриптах, попробуйте удалить скрипт и посмотреть пропал ли скрипт на сайте, и изменяйте файл в notepad++ с кодировкой UFT-8 Без BOOM
     
  8. vo_it

    vo_it Новичок

    Сообщения:
    3
    Симпатии:
    0
    Как правильно сделать это? я понимаю это в папке 0:/www/storage/modification/ ? если да что там надо сделатб?
     
  9. solunski.d

    solunski.d Эксперт

    Сообщения:
    1.570
    Симпатии:
    437
    В админке есть Modifications в разделе Расширения. Там есть голубая кнопка refresh.
    Судя по путям у вас OpenCart 3 версия + локалка.
     
  10. vo_it

    vo_it Новичок

    Сообщения:
    3
    Симпатии:
    0
    Сделано, не помогло((((
     
  11. solunski.d

    solunski.d Эксперт

    Сообщения:
    1.570
    Симпатии:
    437
    Нанимайте программиста.. или переустанавливайте.
     
  12. vo_it

    vo_it Новичок

    Сообщения:
    3
    Симпатии:
    0
    Ясно, в любом случае спасибо, что откликнулись.