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

Shkip

Users
  • Posts

    491
  • Joined

Everything posted by Shkip

  1. а что, по вашему мнению, там должно быть? если я начну регистрироваться, форма сама определит что я с города Запыдрыщинск?
  2. а переменные?) смотрите лог vqmod-а для этих файлов: /vqmod/xml/1_profit_report_preparation_OCv?.xml /vqmod/xml/2_adv_cust_orders_report_profit_OCv?.xml
  3. 1. нужно переводить файл модуля оформления заказа 2. настроить размер в настройках магазина
  4. ...\catalog\language\russian\mail\order.php если там нет - то хз что там у вас в коде
  5. нет перевода в файле локализации. ищите в анг.яз. text_product и переносите в рус.яз
  6. в файле стилей как-то так #menu a:hover { background-color: #357133; color: #fff; }
  7. ваш код отличается от моего округление до 1000 я делал так: в файле …\system\library\currency.php, делаем округление до 1 тысячи $string .= number_format(round($value, (int)$decimal_place), (int)$decimal_place, $decimal_point, $thousand_point); меняем на if ($currency == 'BYR') $string .= number_format(round($value, -3), (int)$decimal_place, $decimal_point, $thousand_point); } else { $string .= number_format(round($value, (int)$decimal_place), (int)$decimal_place, $decimal_point, $thousand_point); } вы попробуйте так number_format(round($price_by, -3), 0, '.', ' ')
  8. ...\catalog\view\theme\[ваша_тема]\stylesheet\stylesheet.css #language {position: absolute;top: 59px;left: 360px;width: 108px;color: #999;line-height: 17px;} #currency {width: 120px;position: absolute;top: 56px;left: 500px;color: #999;line-height: 17px;} меняете параметры расположения блока как вам надо
  9. очистить таблицу [ваш-префикс]_product_attribute через phpMyAdmin потом уже удалять атрибуты
  10. robokassa, interkassa - условия и способы оплат смотрите на сайтах данных систем
  11. сделайте все по моему коду - все работает, скрины я вам выкладывал.
  12. потому что не установлен формат второй цены, используется просто число, символ валюты установлен вручную
  13. в данном случае не вместо, а перед <div class="price">От <?php if (!$product['special']) { ?> <?php echo $product['........ ну для более точного решения - надо смотреть шаблон и стили
  14. не, он же про админку спросил, так что simple не катит. а какие ему поля нужны - я хз, мой штатный телепат в отпуске
  15. дописать код недостающих полей ЗЫ правильно заданный вопрос = 80% ответа
  16. ну если все доп.поля заняты - значит надо создать еще.
  17. или тут https://opencartforum.com/topic/1244-otobrazhenie-dvukh-valiut-v-opencart/page-2
  18. нашел другой путь. с помощью chukcha в файле ...\catalog\view\javascript\common.js заменить на это /* Ajax Cart */ $('#cart > .heading a').live('click', function() { $('#cart').addClass('active'); $('#cart').load('index.php?route=module/cart #cart > *'); $('#cart').live('mouseleave', function() { setTimeout(function(){ $('#cart').removeClass('active')},2000); }); });
×
×
  • 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.