Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
14543 Lượt xem

Hi,

how can I edit URLs in Odoo for the website, the shop and products? For the product URL Odoo automatically creates one with the product name, internal reference and its ID. I'd like to customize the URL to make it shorter.

I'm guessing an extension is needed? Any recommendations?

Thanks!

Ảnh đại diện
Huỷ bỏ

Without module, you can easily creater shorter url, but that will redirect to the complete url with slug...

You can do it with module link tracker, or via attachment redirection.

Câu trả lời hay nhất

Hello Anina, 

There is field in Odoo inside product website_url which is computed type. You can inherit computed method _compute_website_url with the following code:

def _compute_website_url(self):

   super(ProductTemplate, self)._compute_website_url()

      for product in self:

        product.website_url = #yoururl

You can also have a look at https://apps.odoo.com/apps/modules/13.0/seo_url_redirect/ to fulfill your requirements. 

Thanks

Anisha Bahukhandi

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 9 25
3958
1
thg 7 25
1423
2
thg 6 25
2957
3
thg 4 25
3028
1
thg 4 25
3769