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

khmelev77

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

    16
  • З нами

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

Відвідувачі профілю

Блок відвідувачів профілю відключений і не буде доступний широкому іншим користувачам

khmelev77's Achievements

Apprentice

Apprentice (3/14)

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

Recent Badges

0

Репутація

  1. Здравствуйте, подскажите возможные способы реализации: Указывается цена за 1л. жидкого удобрения (например), пусть будет 1000 рублей. В карточке товара при оформлении заказа пользователь выбирает сколько ему нужно, напимер 7.3 литра == стоимость заказа станет 7300 рублей. Возможно кто-то сталкивался с таким и обладает готовым кодом/решением Возможно существует какой-то модуль? Буду рад любым ответам по данному вопросу!
  2. Здравствуйте! Есть ли способы или бесплатные модули расширяющие слайдер на всю ширину сайта? Нужно для opencart 3. Находил на этом форуме только решения для старых версий которые в итоге не работали из-за своей неактуальности/старой версии.
  3. Здравствуйте, может ли кто-то поделиться своим правильно настроенным файлом htaccess? Или помочь настроить мой. Пытался сам, но ничего из предложенных решений гуглом не работают правильно именно с опенкартом. Требуется следующее: Редирект с index.php на без него Редирект со множественными слешами на один Редирект с www на без www Редирект с http на https Заранее спасибо! # 1.To use URL Alias you need to be running apache with mod_rewrite enabled. # 2. In your opencart directory rename htaccess.txt to .htaccess. # For any support issues please visit: http://www.opencart.com Options +FollowSymlinks # Prevent Directoy listing Options -Indexes # Prevent Direct Access to files <FilesMatch "(?i)((\.tpl|.twig|\.ini|\.log|(?<!robots)\.txt))"> Require all denied ## For apache 2.2 and older, replace "Require all denied" with these two lines : # Order deny,allow # Deny from all </FilesMatch> # SEO URL Settings RewriteEngine On # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L] RewriteRule ^system/download/(.*) index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] ### Additional Settings that may need to be enabled for some servers ### Uncomment the commands by removing the # sign in front of it. ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that. # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it: # php_flag register_globals off # 2. If your cart has magic quotes enabled, This may work to disable it: # php_flag magic_quotes_gpc Off # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try # php_value upload_max_filesize 999M # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value post_max_size 999M # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_execution_time 200 # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_input_time 200 # 7. disable open_basedir limitations # php_admin_value open_basedir none
  4. Здравствуйте, может ли кто-то поделиться своим правильно настроенным файлом htaccess? Или помочь настроить мой. Пытался сам, но ничего из предложенных решений гуглом не работают правильно именно с опенкартом. Требуется следующее: Редирект с index.php на без него Редирект со множественными слешами на один Редирект с www на без www Редирект с http на https Заранее спасибо! # 1.To use URL Alias you need to be running apache with mod_rewrite enabled. # 2. In your opencart directory rename htaccess.txt to .htaccess. # For any support issues please visit: http://www.opencart.com Options +FollowSymlinks # Prevent Directoy listing Options -Indexes # Prevent Direct Access to files <FilesMatch "(?i)((\.tpl|.twig|\.ini|\.log|(?<!robots)\.txt))"> Require all denied ## For apache 2.2 and older, replace "Require all denied" with these two lines : # Order deny,allow # Deny from all </FilesMatch> # SEO URL Settings RewriteEngine On # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L] RewriteRule ^system/download/(.*) index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] ### Additional Settings that may need to be enabled for some servers ### Uncomment the commands by removing the # sign in front of it. ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that. # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it: # php_flag register_globals off # 2. If your cart has magic quotes enabled, This may work to disable it: # php_flag magic_quotes_gpc Off # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try # php_value upload_max_filesize 999M # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value post_max_size 999M # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_execution_time 200 # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_input_time 200 # 7. disable open_basedir limitations # php_admin_value open_basedir none
  5. Здравствуйте! Как сделать чтобы не отображались фильтры у которых (0)? (мол нет товаров с этими фильтрами в категории) Где можно прописать условие и какое? В каком файле?
  6. мой код <ul class="collapsible collapsible-accordion collection with-header z-depth-1" data-collapsible="accordion"> <li class="collection-header blue accent-2 white-text"><h5 class="text-bold">{{ heading_title }}</h5></li> {% for category in categories %} {% if category.category_id == category_id %} <li class="active"> <a href="{{ category.href }}" class="collapsible-header waves-effect blue-grey-text text-darken-4 text-bold active" onclick="return false;">{{ category.name }}</a> {% if category.children %} <div class="collapsible-body no-padding"> <div class="collection"> {% for child in category.children %} {% if child.category_id == child_id %} <a class="collection-item waves-effect child truncate blue-grey-text text-darken-4 blue-grey lighten-4" href="{{ child.href }}">{{ child.name }}</a> {% else %} <a class="collection-item waves-effect child truncate blue-grey-text text-darken-4" href="{{ child.href }}">{{ child.name }}</a> {% endif %} {% endfor %} </div> </div> {% endif %} </li> {% else %} <li><a href="{{ category.href }}" class="collapsible-header waves-effect truncate blue-grey-text text-darken-4 text-bold">{{ category.name }}</a></li> {% endif %} {% endfor %} </ul>
  7. А можно подробнее, куда нужно заходить и изменять это? Редактор шаблона или в каких-то файлах искать?
  8. onclick false только для Пленки возможно сделать? т.к. у меня например в Категории "Агроволокно" подкатегорий нету
  9. Есть категория "Пленка" которая сама по себе пустая, но в ней есть подкатегории "Тепличная", "Универсальная" и тд Вопрос: Как сделать чтобы при выборе категории "Пленка" слева, просто раскрывался список подкатегорий не производя перехода на саму категорию "Пленка" ? (которая к слову у меня пустая) Ссылка на сайт если нужно (домен временный): http://skidon-legko.ru/plenka
  10. Как скрыть эти button's внизу? В файле extension / module / slideshow.twig ничего не нашёл нужного.
  11. Здравствуйте. Как реализовать такие триггеры в opencart? Какие модули стоит использовать?
  12. Нет, нужны не конкретно атрибуты, а товары с их атрибутами Вот это: Товары(включая данные о товарах, параметры, специальные предложения, скидки, атрибуты и фильтры) Но когда я выгружаю этим способом - атрибуты товара отсутствуют в полученном файле. Хотя и написано что он должен включать их.
×
×
  • Створити...

Important Information

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