I know that those leads can be collected using Zapier, but I want to know if there is an app inside odoo that can do the same integration.
Thank you
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I know that those leads can be collected using Zapier, but I want to know if there is an app inside odoo that can do the same integration.
Thank you
I may be a bit biased, but our company (Lookout) has developed a commercial plugin (€50) that connects the three most popular WordPress form builders (CF7, WP Forms, Forminator) to Odoo. It is easy to set up and includes an easy form fields to Odoo fields mapping tool. More info on these plugins here: https://lookout.be/en/wordpress-plugins/
Important: the plugins use Odoo's external API, this is only available on Custom Odoo pricing plans, it is not available on One App Free or Standard plans.
Yes, Odoo provides built-in tools and modules that can collect leads from external platforms like Elementor or other WordPress plugins without needing Zapier. Here's how you can achieve it:
Odoo supports webhooks that allow it to interact with external applications. If your WordPress plugin (e.g., Elementor) supports webhooks, you can configure it to send form submissions directly to Odoo.
https://your-odoo-domain.com/crm/webhook
from odoo import http
from odoo.http import request
class LeadWebhookController(http.Controller):
@http.route('/crm/webhook', type='json', auth='public', csrf=False)
def create_lead(self, **kwargs):
lead_data = {
'name': kwargs.get('name'),
'email_from': kwargs.get('email'),
'contact_name': kwargs.get('contact_name'),
'description': kwargs.get('message'),
}
request.env['crm.lead'].sudo().create(lead_data)
return {'status': 'success', 'message': 'Lead created successfully'}
If you want a more comprehensive integration with WordPress:
If you prefer an Odoo-native solution:
If you’re already using Elementor or WordPress plugins:
For non-technical users, you can use Odoo Studio to customize the CRM module and create automation rules to handle incoming data via API or webhooks.
While Zapier is a straightforward solution, Odoo provides native methods for collecting leads via:
Let me know if you need further guidance with implementation or customization!
I also face the challenge, Please help guys
Create an account today to enjoy exclusive features and engage with our awesome community!
Přihlásit se| Related Posts | Odpovědi | Zobrazení | Aktivita | |
|---|---|---|---|---|
|
|
1
srp 25
|
10176 | ||
|
|
1
zář 25
|
6257 | ||
|
|
1
led 23
|
2512 | ||
|
|
0
lis 21
|
2204 | ||
|
|
3
srp 19
|
9527 |
I am also facing the same issue.