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

talgatuza

Newbie
  
  • Posts

    21
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

talgatuza's Achievements

Explorer

Explorer (4/14)

  • First Post
  • Collaborator
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Все доброго дня дня столкнулся с такой проблемой необходимо добавить к категориям в url .html модуль seo_pro добавляет его только к товарам но не к категориям есть ли решение данной проблемы?
  2. У меня вот такой код в базе пробовал такой тоже не по могло у меня опенкарт 3 LIKE '%" . $this->db->escape(utf8_strtolower($data['filter_name'])) . "%'";
  3. Все привет кто знает как сделать точный поиск по артикулу потому что стандартный поиск дает похожи артикулы например я пишу 3515 и он мне показывает нужный товар и ещё остальные например 9835156 и подобные и ещё по название он ищет например я ввёл артикул то если в название товара есть 3515 то он мне тоже покажется кто знает как это исправить
  4. Всем привет купил модуль для опенкарт в доках у них написано что заходишь во вкладку сервис там есть поле обмен данными с веб-сайтом только почему то в моей версии нету весь интернет пересмотрел так и ничего не нашел есть ли на форм те кто знают как решить эту проблему 1с Торговля и Склад ред 9,2 версия 1с - 7.7 Помогите плиз
  5. Скажите пожалуйста когда я нажимая на кнопку увеличить кол-во товаров в корзине на десктопе не работет а на мобильной версии работает <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="increase" data-product="{{ product.key }}"> <span class="fas fa-chevron-up fa-increase"></span> </span> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="decrease" data-product="{{ product.key }}"> <span class="fas fa-chevron-down fa-increase"></span> </button> вот сами кнопки вот вся разметка <div class="table d-none d-lg-inline-block d-md-inline-block d-sm-inline-block"> <table class="table"> <thead class="bg-card-table raunded"> <tr> <th style="text-align: center;" scope="col" class="rounded-left"></th> <th style="text-align: center;" scope="col">{{ column_model }}</th> <th style="text-align: center;" scope="col">Наименование</th> <th style="text-align: center;" scope="col">{{ column_price }}</th> <th style="text-align: center;" scope="col">{{ column_quantity }}</th> <th style="text-align: center;" scope="col">{{ column_total }}</th> <th style="text-align: center;" scope="col" class="rounded-right">Удалить</th> </tr> </thead> {% if products or vouchers %} <tbody> {% for product in products %} <tr> <th style="text-align: center;" scope="row">1</th> <td style="text-align: center;" scope="row" >{{ product.model }}</td> <td style="text-align: center;" class="name">{{ product.name }}{% if not product.stock %} <span class="text-danger">***</span> {% endif %} <td style="text-align: center;">{{ product.price }}</td> {% if edit_cart %} <td style="text-align: center;" class="quantity"> <div class="row"> <div class="col-8 px-2"> <div class="input-group input-group-sm"> <input type="text" data-mask="9?999999999999999" value="{{ product.quantity }}" class="qc-product-qantity form-control text-center" name="quantity[{{ product.key }}]"> </div> </div> <div class="col-2 px-0"> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="increase" data-product="{{ product.key }}"> <span class="fas fa-chevron-up fa-increase"></span> </span> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="decrease" data-product="{{ product.key }}"> <span class="fas fa-chevron-down fa-increase"></span> </button> </span> </div> </div> </div> </div> {% else %} x&nbsp;{{ product.quantity }} </div> {% endif %}</td> <td style="text-align: center;" class="total hidden-xs">{{ product.total }}</td> <td style="text-align: center;"> <button class="btn button-remove" data-product="{{ product.key }}" data-remove="{{ product.key }}" title="{{ button_remove }}"> <svg width="20" height="20" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 18C13.9706 18 18 13.9706 18 9C18 4.02944 13.9706 0 9 0C4.02944 0 0 4.02944 0 9C0 13.9706 4.02944 18 9 18Z" fill="#D75A4A"/> <path d="M5.76001 12.24L9.00001 9.00001L12.24 5.76001" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> <path d="M5.76001 5.76001L9.00001 9.00001L12.24 12.24" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> </svg> </button> </td> </tr> {% endfor %} {% endif %} </tbody> </table> </div> <div class="mobile-table d-lg-none d-md-none d-sm-none mt-4"> {% for product in products %} <table class="table table-borderless"> <tbody> <tr> <th scope="row" class="rounded-top"></th> <td>1</td> </tr> <tr> <th scope="row">{{ column_model }}</th> <td>957397</td> </tr> <tr> <th scope="row">Наименование</th> <td>{{ product.name }}{% if not product.stock %} <span class="text-danger">***</span> {% endif %}</td> </tr> <tr> <th scope="row">Цена</th> <td>{{ product.price }}</td> </tr> <tr> <th scope="row">Кол-во</th> {% if edit_cart %} <td style="text-align: center;" class="quantity"> <div class="row"> <div class="col-8 px-2"> <div class="input-group input-group-sm"> <input type="text" data-mask="9?999999999999999" value="{{ product.quantity }}" class="qc-product-qantity form-control text-center" name="quantity[{{ product.key }}]"> </div> </div> <div class="col-2 px-0"> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="increase" data-product="{{ product.key }}"> <span class="fas fa-chevron-up fa-increase"></span> </span> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="decrease" data-product="{{ product.key }}"> <span class="fas fa-chevron-down fa-increase"></span> </button> </span> </div> </div> </div> </div> {% else %} x&nbsp;{{ product.quantity }} </div> </tr> <tr> <th scope="row">Сумма</th> <td>{{ product.price}}</td> </tr> <tr> <th scope="row" class="rounded-bottom">Удалить</th> <td> <button class="btn button-remove" data-product="{{ product.key }}" data-remove="{{ product.key }}" title="{{ button_remove }}"> <svg width="20" height="20" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 18C13.9706 18 18 13.9706 18 9C18 4.02944 13.9706 0 9 0C4.02944 0 0 4.02944 0 9C0 13.9706 4.02944 18 9 18Z" fill="#D75A4A"/> <path d="M5.76001 12.24L9.00001 9.00001L12.24 5.76001" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> <path d="M5.76001 5.76001L9.00001 9.00001L12.24 12.24" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> </svg> </button> </td> </tr> </tbody> </table> {% endif %} {% endfor %} </div>
  6. Скажите пожалуйста когда я нажимая на кнопку увеличить кол-во товаров в корзине на десктопе не работет а на мобильной версии работает <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="increase" data-product="{{ product.key }}"> <span class="fas fa-chevron-up fa-increase"></span> </span> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="decrease" data-product="{{ product.key }}"> <span class="fas fa-chevron-down fa-increase"></span> </button> вот сами кнопки вот вся разметка <div class="table d-none d-lg-inline-block d-md-inline-block d-sm-inline-block"> <table class="table"> <thead class="bg-card-table raunded"> <tr> <th style="text-align: center;" scope="col" class="rounded-left"></th> <th style="text-align: center;" scope="col">{{ column_model }}</th> <th style="text-align: center;" scope="col">Наименование</th> <th style="text-align: center;" scope="col">{{ column_price }}</th> <th style="text-align: center;" scope="col">{{ column_quantity }}</th> <th style="text-align: center;" scope="col">{{ column_total }}</th> <th style="text-align: center;" scope="col" class="rounded-right">Удалить</th> </tr> </thead> {% if products or vouchers %} <tbody> {% for product in products %} <tr> <th style="text-align: center;" scope="row">1</th> <td style="text-align: center;" scope="row" >{{ product.model }}</td> <td style="text-align: center;" class="name">{{ product.name }}{% if not product.stock %} <span class="text-danger">***</span> {% endif %} <td style="text-align: center;">{{ product.price }}</td> {% if edit_cart %} <td style="text-align: center;" class="quantity"> <div class="row"> <div class="col-8 px-2"> <div class="input-group input-group-sm"> <input type="text" data-mask="9?999999999999999" value="{{ product.quantity }}" class="qc-product-qantity form-control text-center" name="quantity[{{ product.key }}]"> </div> </div> <div class="col-2 px-0"> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="increase" data-product="{{ product.key }}"> <span class="fas fa-chevron-up fa-increase"></span> </span> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="decrease" data-product="{{ product.key }}"> <span class="fas fa-chevron-down fa-increase"></span> </button> </span> </div> </div> </div> </div> {% else %} x&nbsp;{{ product.quantity }} </div> {% endif %}</td> <td style="text-align: center;" class="total hidden-xs">{{ product.total }}</td> <td style="text-align: center;"> <button class="btn button-remove" data-product="{{ product.key }}" data-remove="{{ product.key }}" title="{{ button_remove }}"> <svg width="20" height="20" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 18C13.9706 18 18 13.9706 18 9C18 4.02944 13.9706 0 9 0C4.02944 0 0 4.02944 0 9C0 13.9706 4.02944 18 9 18Z" fill="#D75A4A"/> <path d="M5.76001 12.24L9.00001 9.00001L12.24 5.76001" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> <path d="M5.76001 5.76001L9.00001 9.00001L12.24 12.24" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> </svg> </button> </td> </tr> {% endfor %} {% endif %} </tbody> </table> </div> <div class="mobile-table d-lg-none d-md-none d-sm-none mt-4"> {% for product in products %} <table class="table table-borderless"> <tbody> <tr> <th scope="row" class="rounded-top"></th> <td>1</td> </tr> <tr> <th scope="row">{{ column_model }}</th> <td>957397</td> </tr> <tr> <th scope="row">Наименование</th> <td>{{ product.name }}{% if not product.stock %} <span class="text-danger">***</span> {% endif %}</td> </tr> <tr> <th scope="row">Цена</th> <td>{{ product.price }}</td> </tr> <tr> <th scope="row">Кол-во</th> {% if edit_cart %} <td style="text-align: center;" class="quantity"> <div class="row"> <div class="col-8 px-2"> <div class="input-group input-group-sm"> <input type="text" data-mask="9?999999999999999" value="{{ product.quantity }}" class="qc-product-qantity form-control text-center" name="quantity[{{ product.key }}]"> </div> </div> <div class="col-2 px-0"> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="increase" data-product="{{ product.key }}"> <span class="fas fa-chevron-up fa-increase"></span> </span> <span class="input-group-btn"> <button class="btn btn-control btn-white border float-right button-update" data-type="decrease" data-product="{{ product.key }}"> <span class="fas fa-chevron-down fa-increase"></span> </button> </span> </div> </div> </div> </div> {% else %} x&nbsp;{{ product.quantity }} </div> </tr> <tr> <th scope="row">Сумма</th> <td>{{ product.price}}</td> </tr> <tr> <th scope="row" class="rounded-bottom">Удалить</th> <td> <button class="btn button-remove" data-product="{{ product.key }}" data-remove="{{ product.key }}" title="{{ button_remove }}"> <svg width="20" height="20" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 18C13.9706 18 18 13.9706 18 9C18 4.02944 13.9706 0 9 0C4.02944 0 0 4.02944 0 9C0 13.9706 4.02944 18 9 18Z" fill="#D75A4A"/> <path d="M5.76001 12.24L9.00001 9.00001L12.24 5.76001" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> <path d="M5.76001 5.76001L9.00001 9.00001L12.24 12.24" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/> </svg> </button> </td> </tr> </tbody> </table> {% endif %} {% endfor %} </div>
  7. Здравствуйте подскажите пожалуйста как вывести discount в рекомендованные у меня все время ошибка result variable undefined
  8. Все привет кто подскажет как вывести discount в featured знаю что в модулях но у меня все время ошибка result variable undefined кто подскажет что делать
  9. можно и через костыли не обязательно через модуль
  10. нет просто по требованию клиента так надо сделать у них сайт на пхп шоп там выходит нужно чтобы в опенкарт также было
  11. Как сделать вывод номера заказа при оформлении есть поле дата и номер заказ их нужно вывести когда клиент оформляет заказ т.е в корзине
  12. только мне не нужна акция у меня есть три колонки кол-во цена при заказе от количества и нужно поле экономия где выводилась экономия от цены т.е товар стоит 100 руб и нужно в экономии показать цену где price - discount.price = столько то но у меня не получается выходит ошибка что не является числом
  13. как сделать чтобы подобная код работал только для discount то есть у меня выводится от 3шт цена 356р и надо сделать строку экономия которая будет считать эту цену от цены товара если я делаю цена товара - цена дискаунта то ошибка что не является числом discount
×
×
  • 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.