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

Blast

Users
  
  • Posts

    793
  • Joined

  • Last visited

Information

  • Gender
    Мужчина

Recent Profile Visitors

10,330 profile views

Blast's Achievements

Experienced

Experienced (11/14)

  • Dedicated Rare
  • First Post
  • Posting Machine Rare
  • Collaborator
  • Conversation Starter

Recent Badges

152

Reputation

  1. {% for attribute_group in attribute_groups %} {% if attribute_group.attribute_group_id == 'ид_нужной_группы' %} <h4 class="heading"><span>{{ attribute_group.name }}</span></h4> <div class="product-data"> {% for attribute in attribute_group.attribute %} <div class="product-data__item"> <div class="product-data__item-div">{{ attribute.name }}</div> <div class="product-data__item-div">{{ attribute.text }}</div> </div> {% endfor %} </div> {% endif %} {% endfor %}
  2. {% if attribute_group.attribute_group_id == 'ид_нужной_группы' %}
  3. batch editor вроде имеет встроенный поиск по картинкам в поисковике
  4. акции на опции https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=38633 автообновление цены при выборе опций конечно подпилить придется их совместную работу, но решение рабочее
  5. вам больше скорее подойдет модуль автофильтра
  6. если речь идет о тонких стилизованных ползунках, то например mCustomScrollBar можно прикрутить
  7. значение, которое возвращает функция звонков, записывайте в сессию? например $this->session->data['phone_code'] = '1234'; пример любых аяксовых запросов найдете по коду очень много, хотя бы добавление в корзину, в common.js во втором контроллере сравниваете то. что пришло из запроса с тем, что в сессии, и возвращаете либо $json['error'] либо $json['success']
  8. может без слэша выведите url и посмотрите что в нем {{ app.request.uri }}
  9. twig же должен быть. какой tpl? php не выполнится {% if app.request.uri == '/delivery' %} // код {% endif %}
  10. отлично! хех. помочь мог бы, но к сожалению из-за текущей ситуации я не смогу принять от вас оплату(( по 3 пункту написал, т.к. просто делал такое же на одном из своих проектов. ну если не найдете исполнителя, то пишите, посмотрим что можно сделать
  11. 3) попробуйте так <file path="catalog/model/extension/module/ocfilter.php"> <operation error="skip"> <search><![CDATA[$filters_data = [];]]></search> <add position="before"> <![CDATA[$results = array_unique($results);]]> </add> </operation> </file>
  12. контроллер $data = 'данные текстового файла'; $json['datafile'] = 'data:text/plain;base64,' . base64_encode($data); $json['filename'] = 'file.txt'; $this->response->setOutput(json_encode($json)); вьюха <a href="" id="dataFromFile" style="display: none;" download="">save</a> ... <script> ... success: function(json) { $('#dataFromFile').attr('href', json['datafile']).attr('download', json['filename']); document.getElementById("dataFromFile").click(); } ... </script>
×
×
  • 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.