I am working on ECommerce clothing website, I want to create different shopping pages for men, women and kids having different products. How this can be achieved with odoo v_16?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
Hello @Badan Singh Pundeer
You have 2 options to show your products on website.
1. Use odoo website_sale feature.
you can create new Categories( product.public.category) like man, female, kids.
after creation it will show on shop page and on click specific category you get only that category products.
2. You can create new Categories( product.public.category)
and add dynamic menus in website.
Please find code in comment.
I hope this will help you.
Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari
Please find code here :-
for example:
<template id="template_header_default" inherit_id="website.template_header_default">
<xpath expr="//t[@t-foreach='website.menu_id.child_id']" position="before">
<t t-set="categories" t-value="request.env['product.public.category'].sudo().search([])"/>
<t t-foreach="categories" t-as="categ">
<li class="nav-item">
<a t-att-href="'/shop/category/%s' % categ.id" class="nav-link">
<span t-esc="categ.name"></span>
</a>
</li>
</t>
</xpath>
<template>
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
2
okt. 24
|
2774 | ||
|
1
apr. 25
|
668 | ||
|
1
feb. 25
|
701 | ||
How can I make website.
Opgelost
|
|
1
sep. 24
|
1081 | |
|
1
jan. 24
|
1614 |