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

LiLu

Users

Everything posted by LiLu

  1. в .htaccess прописать RewriteCond %{HTTP_HOST} ^www.site\.com$ [NC] RewriteRule ^(.*)$ http://site.com/$1 [R=301,L]
  2. @bodyak0 ну модулем, так модулем. Хотя я вижу просто клон производителей
  3. можно категории клонировать или производителей юзать, в случае если на сайте они не нужны
  4. в контроллере заменить if (isset($this->request->get['sort'])) { $sort = $this->request->get['sort']; } else { $sort = 'p.sort_order'; } на if (isset($this->request->get['sort'])) { $sort = $this->request->get['sort']; } else { $sort = 'p.price';
  5. в то же место в контроллере. и в шаблоне вывести <?php echo $total; ?>
  6. $this->load->model('account/order'); $this->data['order_info'] = $this->model_account_order->getOrder($this->session->data['order_id']); $this->data['total'] = $this->data['order_info']['total'];
  7. в контроллере catalog/controller/checkout/success.php перед unset($this->session->data['shipping_method']); добавить $data['order_id'] = $this->session->data['order_id']; в шаблоне catalog/view/theme/*/templlate/checkout/success.tpl где нужно выводим <?php echo $order_id; ?>
  8. просто интересно, без подколов (суши не ем так то) - часто ли возникают непонятки с кол-вом палочек? мне видится, что можно одну заказать) или три. Их не называют "комплект, набор палочек"?
  9. disabled, или вовсе выводить его не в <input>, а в обычный <p> или <span>
  10. Мне на том сайте палочки даже к бургеру предлагают. Вам точно так же нужно? Решается доп.полями
  11. как то так в контроллере $this->data['sisters_cat'] = array(); if($category_info['parent_id'] != 0){ $sisters = $this->model_catalog_category->getCategories($category_info['parent_id']); foreach ($sisters as $sister) { $this->data['sisters_cat'][] = array( 'name' => $sister['name'], 'href' => $this->url->link('product/category', 'path=' . $this->request->get['path'] . '_' . $sister['category_id'] . $url) ); } } в шаблоне {% if sisters_cat %} {% for sister in sisters_cat %} <li><a href="{{ sister.href }}">{{ sister.name }}</a></li> {% endfor %} {% endif %}
  12. catalog/view/theme/*/template/product/product.twig или обратиться к автору шаблона
  13. внутри #search-mobile задайте инпуту имя mobsearch и добавьте в common.js вот это: $('#search-mobile input[name=\'mobsearch\']').bind('keydown', function(e) { if (e.keyCode == 13) { url = $('base').attr('href') + 'index.php?route=product/search'; var search = $('input[name=\'mobsearch\']').attr('value'); if (search) { url += '&search=' + encodeURIComponent(search); } location = url; } }); и у вас там button-search-mobile где вообще? А нигде
  14. Без адреса сайта могу предположить, что у вас десктопный и мобильный поиски имеют одинаковые id
×
×
  • 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.