Is there any way to add product categories to the mobile website?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
It is entirely possible, website_sale.products_categories view must be edited, by removing hidden-xs parameter:
<?xml version="1.0"?> <data inherit_id="website_sale.products" active="False" customize_show="True" name="Product Categories"> <xpath expr="//div[@id='products_grid_before']" position="inside"> <ul class="nav nav-pills nav-stacked mt16"> <li t-att-class=" '' if category else 'active' "><a t-att-href="keep('/shop',category=0)">All Products</a></li> <t t-foreach="categories" t-as="c"> <t t-call="website_sale.categories_recursive"/> </t> </ul> </xpath> <xpath expr="//div[@id='products_grid_before']" position="attributes"> <attribute name="class">col-md-3 hidden-xs</attribute> <!-- remove hidden-xs from this line --> </xpath> <xpath expr="//div[@id='products_grid']" position="attributes"> <attribute name="class">col-md-9</attribute> </xpath> </data>
Thank you for this solution. My answer was given concerning the standard modules. Of course it is always possible to achieve almost anything with modifying the code.
It would be really great if you could provide a small community module with this enhancement.
I'm working on it. On a few days I will upload my module. Take a look to disgal.es/shop from a mobile device.
Obviously not, see https://www.odoo.com/forum/help-1/question/how-could-i-get-product-categories-on-the-mobile-shop-92661
and https://www.odoo.com/forum/help-1/question/category-tree-on-mobile-devices-84620
In that case, it's possible to force desktop layout for mobile devices?
Any solution for this problem
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
1
يناير 25
|
3808 | ||
|
0
ديسمبر 16
|
3192 | ||
|
0
مارس 15
|
3169 | ||
|
4
أغسطس 25
|
2620 | ||
|
2
مارس 24
|
1872 |