how to create an inner content snippet in odoo 16?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- सीआरएम
- e-Commerce
- लेखांकन
- इन्वेंटरी
- PoS
- Project
- MRP
This question has been flagged
2
Replies
2730
Views
how to create an inner content snippet in odoo 16?
Hi Usama Gull,
You should check check out data-drop-in and data-drop-near attributes of snippet options. I believe those are the attributes that let's you choose where the snippet should be added.
I'm adding a code snippet for reference.
<div data-selector=".o_mega_menu .nav > .nav-link"data-drop-in=".o_mega_menu nav"
data-drop-near=".o_mega_menu .nav-link"/>
Hope it helps.
Hi,
Try refer the following
<template id="template_id" inherit_id="website.snippets">
<xpath expr="//div[@id='snippet_content']/div[hasclass('o_panel_body')]" position="inside">
<t t-snippet="module_name.snippet_name"
t-thumbnail=""/>
</xpath>
</template>
https://www.cybrosys.com/blog/how-to-create-a-snippet-in-odoo-15-erp
Regards
I am not talking about snippets I am talking about inner content snippets like blockquote, alert, and rating snippet available on odoo website I wanted to create the same as there inner content snippets.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
अप्रैल 25
|
1466 | ||
Odoo App
Solved
|
|
1
नव॰ 23
|
2045 | |
|
0
मई 24
|
1769 | ||
|
0
सित॰ 23
|
2699 | ||
|
0
सित॰ 23
|
2339 |
I am not talking about snippets I am talking about inner content snippets like blockquote, alert, and rating snippet available on odoo website I wanted to create the same as there inner content snippets.