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

GeneralMD

Newbie
  
  • Posts

    17
  • Joined

  • Last visited

Recent Profile Visitors

836 profile views

GeneralMD's Achievements

Apprentice

Apprentice (3/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Не работает, потому что в коде если смотреть http://prntscr.com/74oq9h то там вместо https написано http, а где это менять не знаю, открыл файл pagination.php но там ничево конкретного про https или http
  2. в .htcacces так написано, это вроде бы правелино)) RewriteEngine on #RewriteCond %{HTTP_HOST} ^www\.visionmarket\.ro$ [NC] RewriteCond %{REQUEST_URI} !^/robots.* RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://visionmarket.ro/$1 [R=301,L] RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] RewriteRule ^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]
  3. Есть кто то кто знает решение этой проблемы? http://forum.opencart.com/viewtopic.php?f=21&t=131655 У меня на сайте сейчас https страницы, и в отзывах не работает pagination, на этой картинке видна ошибка http://prntscr.com/74ghdg и вот страничка где можно это увидеть: https://visionmarket.ro/pax-forte.php
  4. по умолчанию в sitemap генерируется сылки с http вот такой пример: <url> <loc>http://site.ru/test.php</loc> <changefreq>weekly</changefreq> <priority>1.0</priority> </url> а как сделать чтобы по умолчанию было так с https <url> <loc>https://site.ru/test.php</loc> <changefreq>weekly</changefreq> <priority>1.0</priority> </url>
  5. Версия 1.5.5.1.1 Изменений сделал такие: в catalog/controller/product/product.php вместо: $this->document->setTitle($product_info['name']); поставил $this->document->setTitle($product_info['seo_title']); вместо: $this->data['heading_title'] = $product_info['name']; это $this->data['heading_title'] = $product_info['seo_h1']; как здесь: https://opencartforum.com/topic/3271-ne-rabotaet-alternativnyi-title-i-h1/
  6. Сейчас вместо тайтлов показывает название продуктов, попробовал в controller/product/product.php вместо $this->document->setTitle($product_info['name']); поставить: if ($product_info['itle']) { $this->document->setTitle($product_info['title']); } else { $this->document->setTitle($product_info['name']); } ну и ешё многое другое попробовал и всё так и остаётся. Нужна ваше помошь, у кого было ешё такая проблема? и как решил? http://prntscr.com/72ihja http://prntscr.com/72ihpm
  7. Я нашёл вот такое: <?php $reviews = $this->model_catalog_review->getReviewsByProductId($product_id); if ($reviews) { foreach ($reviews as $review) { echo '<div class="review-list"> <div class="author"><b>'.$review['author']; ?></div><br /> <div class="rating"><img src="catalog/view/theme/default/image/stars-<?php echo $review['rating'] . '.png'; ?>" alt="<?php echo $review['reviews']; ?>" /></div> <div class="text"><?php echo $review['text']; ?></div> </div> <?php } } else { ?> <div class="review-list"><?php echo $text_no_reviews; ?></div> <?php } ?> но как это может помочь поисковикам, что здесь особеного
  8. первые две шаги точно сделаны в htaccess такое вот: RewriteEngine on #RewriteCond %{HTTP_HOST} ^www\.visionmarket\.ro$ [NC] RewriteCond %{REQUEST_URI} !^/robots.* RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://visionmarket.ro/$1 [R=301,L]
  9. Нет, я как обычно из админки написал толико адрес продукта, допустим test.php а осталиное не я
  10. Привет, у меня такая проблема, купил сертификат SSL, вроде бы всё хорошо работает, но когда я смотрю в коде, то у адресов продуктов вместо https стоит http, а должно https. вот на этой картинке видно http://prntscr.com/6z5406 Может кто то знает почему так, и как это решить?
×
×
  • 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.