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

DjCross

Users
  
  • Posts

    54
  • Joined

  • Last visited

Everything posted by DjCross

  1. Код в личку после оплаты прислали быстро, а на вопросы здесь ответа неделю нет. Притом что вопросы касаются заявленных функций, которые или не работают, или и вовсе не понятно как включить
  2. Добрый вечер, подскажите удалось ли найти способ внедрить обсуждения на сайт? тоже отзывы все там собраны =(
  3. Приветствую всех. Подскажите по нескольким вопросам: 1. Правильно ли я указал код пункта приема? а то почему-то у меня получается Москва в первой тарифной зоне, а должна быть в четвертой, скриншот настройки - https://yadi.sk/i/hjrqpuKZDq7D1Q 2. При использовании расчета по API boxberry стоимость доставки в любой регион по 4 рублей, установлено geoip с автоподбором города в simple по базе geoip, может в нем проблема? правда отключение не помогло 3. Можно ли увеличить в корзине как-то картинку логотипа Боксбери? что бы они были одинаковые по размеру с картинкой Почты России, которая загружена через модуль Filterit. https://yadi.sk/i/GuoWt3JQKCbFXA 4. Как установить цену на Курьерскую доставку для каждой тарифной зоны? 5. Как запретить доставку в некоторые регионы?
  4. Добрый день. Установил модуль, сразу разобрался, все доступно и понятно, спасибо, своих денег модуль стоит Вопрос о планах: - будет ли в будущем поддержка вывода этих товаров в виде карусели? а то с телефона сильно страница растягивается при до добавлении 4х и больше товаров - было бы очень удобно автоматические названия типа "текст + название категории", что бы не прописывать вручную к каждой категории И наверно проблема больше в шаблоне, можно ли как-то сделать заголовок без капса?) - https://funcomics.ru/funkopop/games/bendy-and-the-ink-machine/bendi-iz-igry-bendi-i-chernilnaya-mashina
  5. Я так понимаю, что у меня тоже помойка в htaccess, только не особо пойму откуда она взялась У меня получается работает редикт с http на https, с http: www на https, а вот с https://www редикт не идет. Чего может не хватать? # 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|\.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/ # SEO URL Settings RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(www\.)?(funcomics.ru) RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/.+$ RewriteRule ^ https://%2%{REQUEST_URI} [R=301,L] RewriteBase / RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/.+$ RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L] RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/.+$ RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L] RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/.+$ 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) RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/.+$ RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] # Кэширование <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 1 month" </IfModule> ### 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 ### Display PHP errors ### Uncomment the commands by removing the # sign in front of it. # php_flag display_startup_errors on # php_flag display_errors on # php_flag html_errors on # php_flag track_errors on # php_value error_reporting "E_ALL"
  6. Добрый день, значит галки целей в модуле бесполезные? не работает отлеживание конверсии?
  7. Потому что я его покупал на другом сайте, могу на почту задать тот же вопрос, если это так важно)
  8. Что-то пошло не так и съехали дополнительные блоки в карточке товара. Подскажите как можно их вернуть на место?
  9. Так же самая проблема, более 30 товаров в корзину по метрике кладут в день, а заказов 0, хотел посмотреть что останавливает, а вебвизор не отображает корзину. Скриншот с настройками прикрепил
  10. нужную строчку удалил и установил Ваш модуль, все заработало. про app.id ничего не знаю, поэтому не добавлял) Огромное спасибо, очень помогли.
  11. http://funcomics.ru/funkopop/films/michael-corleone Вот пример, нету в коде og:image, да и картинки в соц сетях криво отображаются, притом всех страниц, даж главной
  12. Всем привет, подскажите по тегу og:image. Пытаюсь его настроить, но так и не могу понять как лучше это делать в osStore 2.3, поискав на форуме все пишут, что: 1. Можно установить модуль фейсбука - SEO Facebook Open Graph Tags 2. Но при этом в описании движка ocStore написано, что в нем есть: Добавление мета-тегов og:url, og:image, og:type, og:title;. Вот собственно и вопрос, где их добавлять, если они есть? в настройках не нашел, в описании редактировании товара и категорий тоже подобного нет.
×
×
  • 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.