-- HikaShop version -- : 2.4.0
Hello everyone,
Maybe somebody knows how to make normal sitemap for hikashop? I can't to do that normally.
In sitemap i see product link like that:
http://tritatusha.ru/shop/product/2889-detskaya-zubnaya-shchetka-ot-6-12-let-zhestkaya-lion-kid-s-brush-for-6-12-years
But i closed this pages in robots.txt because need other pages to be indexed by Google and Yandex:
http://tritatusha.ru/shop/product/2889-detskaya-zubnaya-shchetka-ot-6-12-let-zhestkaya-lion-kid-s-brush-for-6-12-years/category_pathway-608
I need category pathway because if i don't show them, breadcrumbs will be formed wrong. I need to display category pathway in sitemap. Now i make this SQL query:
SELECT
`#__hikashop_product`.`product_name`,
`#__hikashop_product`.`product_id` AS `cid`,
`#__hikashop_product`.`product_alias` AS `name`
FROM `#__hikashop_product`
JOIN `#__hikashop_product_category` ON `#__hikashop_product`.`product_id` = `#__hikashop_product_category`.`product_id`
WHERE
`#__hikashop_product`.`product_published` = '1'
ORDER BY
`#__hikashop_product`.`product_name` ASC
May somebody help to mee? I do this in Jsitemap.
Thnx to all who will try to help me