Помогите решить проблему

Тема в разделе "OpenCart", создана пользователем Полина К, 21 окт 2016.

Метки:
  1. Полина К

    Полина К

    Регистрация:
    21 окт 2016
    Сообщения:
    5
    Симпатии:
    0
    Подскажите, пожалуйста, как решить такой вопрос: у меня на сайте есть карта сайта, которая доступна для пользователей index.php?route=information/sitemap, но там не все страницы сайта. Создала карту сайта для поисковиков index.php?route=feed/sitemap_pro. Как сделать так, чтобы по адресу index.php?route=information/sitemap открывалась карта сайта со всеми ссылками сайта. Версия 2.1.0.1.
     
  2. chukcha

    chukcha

    Регистрация:
    9 окт 2014
    Сообщения:
    448
    Симпатии:
    119
    ЗАчем?
    Сколько товаров?, категорий, производителей?
     
    samuel_L нравится это.
  3. Baco

    Baco Антихронофаг Команда форума

    Регистрация:
    9 окт 2012
    Сообщения:
    803
    Симпатии:
    399
    сперва в .htacess добавить RewriteRule ^sitemap.xml$ index.php?route=information/sitemap/xml [L]
    ну а дальше в контроллер catalog/controller/information/sitemap.php добавить:
    Код:
    public function xml() {
            if ($this->config->get('sitemap_pro_status')) {
                $output  = '<?xml version="1.0" encoding="UTF-8"?>';
                $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
    
                $this->load->model('feed/sitemap_pro');
                $this->load->model('tool/image');
    
                $products = $this->model_feed_sitemap_pro->getProducts();
                
                    $output .= '<url>';
                    $output .= '<loc>' . 'http://bambook-store.ru/' . '</loc>';
                    $output .= '<changefreq>weekly</changefreq>';
                    $output .= '<priority>1.0</priority>';
                    $output .= '</url>';
    
                foreach ($products as $product) {
                    if ($product['image']) {
                        $output .= '<url>';
                        $output .= '<loc>' . $this->url->link('product/product', 'product_id=' . $product['product_id']) . '</loc>';
                        $output .= '<changefreq>weekly</changefreq>';
                        $output .= '<priority>1.0</priority>';
                        $output .= '<image:image>';
                        $output .= '<image:loc>' . $this->model_tool_image->resize($product['image'], $this->config->get('config_image_popup_width'), $this->config->get('config_image_popup_height')) . '</image:loc>';
                        $output .= '<image:caption>' . htmlspecialchars($product['name']) . '</image:caption>';
                        $output .= '<image:title>' . htmlspecialchars($product['name']) . '</image:title>';
                        $output .= '</image:image>';
                        $output .= '</url>';
                        $output .= "\n";
                    }
                }
    
                $this->load->model('catalog/category');
    
                $output .= $this->getCategories(0);
    
                $this->load->model('catalog/manufacturer');
    
                $manufacturers = $this->model_catalog_manufacturer->getManufacturers();
    
                foreach ($manufacturers as $manufacturer) {
                    $output .= '<url>';
                    $output .= '<loc>' . $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $manufacturer['manufacturer_id']) . '</loc>';
                    $output .= '<changefreq>weekly</changefreq>';
                    $output .= '<priority>0.7</priority>';
                    $output .= '</url>';
                }
    
                $this->load->model('catalog/information');
    
                $informations = $this->model_catalog_information->getInformations();
    
                foreach ($informations as $information) {
                    $output .= '<url>';
                    $output .= '<loc>' . $this->url->link('information/information', 'information_id=' . $information['information_id']) . '</loc>';
                    $output .= '<changefreq>weekly</changefreq>';
                    $output .= '<priority>0.5</priority>';
                    $output .= '</url>';
                }
    
                $output .= '</urlset>';
    
                $this->response->addHeader('Content-Type: application/xml');
                $this->response->setOutput($output);
            }
        }
    
        protected function getCategories($parent_id, $current_path = '') {
            $output = '';
    
            $results = $this->model_catalog_category->getCategories($parent_id);
    
            foreach ($results as $result) {
                if (!$current_path) {
                    $new_path = $result['category_id'];
                } else {
                    $new_path = $current_path . '_' . $result['category_id'];
                }
    
                $output .= '<url>';
                $output .= '<loc>' . $this->url->link('product/category', 'path=' . $new_path) . '</loc>';
                $output .= '<changefreq>weekly</changefreq>';
                $output .= '<priority>0.7</priority>';
                $output .= '</url>';
                $output .= '\n';
                
                $output .= $this->getCategories($result['category_id'], $new_path);
            }
            
            
            return $output;
        }
     
  4. Полина К

    Полина К

    Регистрация:
    21 окт 2016
    Сообщения:
    5
    Симпатии:
    0
    Спасибо, попробую.