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

ukrmedsys

Users
  
  • Posts

    60
  • Joined

  • Last visited

Everything posted by ukrmedsys

  1. да просто на екране Сторінка не працює Хост зараз не може обробити цей запит. HTTP ERROR 500
  2. ничего не изменилось на екране все то же Сторінка не працює Хост зараз не може обробити цей запит. HTTP ERROR 500
  3. Хостинг сказав що сервер в нормі, типу зміни у файлах викликають помилку при спробі викл і вкл модулі нічого не помагає як можна дізнатись звідки помилка ? Версия ocStore 2.1.0.1.1
  4. Версия ocStore 2.1.0.1.1 Вопрос как правильно прописать в .htaccess файле редирект в таком случаи ? Пример который работает RewriteCond %{QUERY_STRING} ^_route_=product/diodnyy-lazer-serenity-5401/$ RewriteRule ^(.*)$ https://massage-systems.com.ua/? [R=301,L] Пример которий НЕ работает RewriteCond %{QUERY_STRING} ^_route_=product/nagrevatel-sterilizator-polotenec%20b-88/$ RewriteRule ^(.*)$ https://massage-systems.com.ua/? [R=301,L]
  5. ocStore 2.1.0.1.1 https://massage-systems.com.ua/sitemap.xml В сайт-мапе трижды встречается страница https://massage-systems.com.ua/product/ Sitemap генерит базовый модуль - Гугл сайтмап Вопрос как ее от туда убрать ? google_sitemap.php
  6. Или для определения макс и мин цени в категории есть еще какая то переменная ?
  7. Спасибо а как насчет p.price-asc" и "p.price-desc". или их так же можно ?
  8. в еrror log дальше 16:04:45 - PHP Notice: Undefined variable: product_total in /catalog/view/theme/magazin/template/product/category.tpl on line 240
  9. Делаю разметку для категории товаров AggregateOffer, Вопрос Как вывести в php-файле lowPrice, highPrice, offerCount ? В контролере нашёл переменные $product_total - вроде как в ней offerCount (количество товаров в категории) также есть фильтр "внизу" как я понимаю из него мне нужно вытянуть "p.price-asc" и "p.price-desc". В php файле при попытке вывести $product_total - ничего не показывает ( <p itemprop="offerCount"><?php echo $product_total; ?></p>) в контролере он описан вот так: $product_total = $this->model_catalog_product->getTotalProducts($filter_data); $data['sorts'][] = array( 'text' => $this->language->get('text_price_asc'), 'value' => 'p.price-asc', 'href' => $link . '?sort=p.price&order=asc' . $url ); $data['sorts'][] = array( 'text' => $this->language->get('text_price_desc'), 'value' => 'p.price-desc', 'href' => $link . '?sort=p.price&order=desc' . $url );
  10. Прописал вместо data-vocabulary.org на schema . org Вопрос как сделать что б в етой строке <meta itemprop="position" content="1" /> content увеличивался з каждой новой li * микроразметка для Product https://schema.org/BreadcrumbList <ul class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList"> <?php $breadlast = array_pop($breadcrumbs); foreach ($breadcrumbs as $breadcrumb) { ?> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"><a href="<?= $breadcrumb['href']; ?>" itemprop="item"><span itemprop="name"><?= $breadcrumb['text']; ?></span></a><meta itemprop="position" content="1" /></li> <?php } ?> <li><span><?= $breadlast['text']; ?></span></li> </ul>
  11. как ето можно исправить ? http://massage-systems.com.ua/product/ultrazvukovoy-skraber-dermalogic-as-s20/ http://m.massage-systems.com.ua/product/ultrazvukovoy-skraber-dermalogic-as-s20/ ocStore 2.1.0.1.1
  12. Вопрос: Как прописать в product.tpl ето поле ? product.tpl
  13. ето куда хоч можно вставлять или кудато конкретно
  14. Нужно для разних категорий товаров виводить определьонний текст как выполнить проверку на то какая категория товара в чом ошибка ?? <?php foreach ($categories as $categorie) { ?> <?php if( $categorie['category_id']=='355') { ?> <span style="display:inline-block;font-size:20px; align: center;"><strong>Гарантия 2 года</strong></span> <?php } ?> <?php } ?> Версия ocStore 2.1.0.1.1
  15. Я не сильон у ajax если не сложно подскажите var html=''; if(items.length){ $.each(items,function(key,item){ if(item.product_id!=0){ html += '<li data-value="' + item['value'] + '"><a href="#">'; html += '<div class="ajaxadvance">'; html += '<div class="image">'; if(item.image){ html += '<img title="'+item.name+'" src="'+item.image+'"/>'; } html += '</div>'; html += '<div class="content">'; html += '<h3 class="name">'+item.label+'</h3>'; if(item.model){ html += '<div class="model">'; html += '<?php echo $ajaxadvancedsearch_model; ?> '+ item.model; html += '</div>'; } if(item.manufacturer){ html += '<div class="manufacturer">'; html += '<?php echo $ajaxadvancedsearch_manufacturer; ?> '+ item.manufacturer; html += '</div>'; } if(item.price){ html += '<div class="price"> <?php echo $ajaxadvancedsearch_price; ?> '; if (!item.special) { html += item.price; } else { html += '<span class="price-old">'+ item.price +'</span> <span class="price-new">'+ item.special +'</span>'; } html += '</div>'; } if(item.stock_status){ html += '<div class="stock_status">'; html += '<?php echo $ajaxadvancedsearch_stock; ?> '+ item.stock_status; html += '</div>'; } if (item.rating) { html += '<div class="ratings"> <?php echo $ajaxadvancedsearch_rating; ?>'; for (var i = 1; i <= 5; i++) { if (item.rating < i) { html += '<span class="fa fa-stack"><i class="fa fa-star-o fa-stack-1x"></i></span>'; } else { html += '<span class="fa fa-stack"><i class="fa fa-star fa-stack-1x"></i><i class="fa fa-star-o fa-stack-1x"></i></span>'; } } html += '</div>'; } html +='</div>'; html += '</div></a></li>' } }); } if (html) { afaxAdvancedSearch.siblings('ul.dropdown-menu').show(); } else { afaxAdvancedSearch.siblings('ul.dropdown-menu').hide(); } $(afaxAdvancedSearch).siblings('ul.dropdown-menu').html(html); }, source: function(request, response) {
×
×
  • 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.