Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Collect leads from elementor or any other Wordpress plugin

Naroči se

Get notified when there's activity on this post

This question has been flagged
appsintegrationodoo
3 Odgovori
5482 Prikazi
Avatar
Sergio Prada

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

0
Avatar
Opusti
Jhon Mu

I am also facing the same issue.

Avatar
Ronny van Der Borght
Best Answer

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.

0
Avatar
Opusti
Avatar
Gracious Joseph
Best Answer

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:

1. Use the Odoo Webhooks Module

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.

Steps:

  1. Install CRM Module in Odoo:
    • Go to Apps.
    • Install the CRM module to manage leads.
  2. Enable Webhooks in WordPress Plugin:
    • For Elementor, use the Elementor Pro version and configure a webhook for the form.
    • Go to the Form Settings in Elementor.
    • Choose Webhook as the action after submission.
    • Enter the webhook URL from Odoo:
      • Odoo webhook URL format:
        https://your-odoo-domain.com/crm/webhook
        
  3. Configure a Controller in Odoo:
    • Create a custom module to handle the incoming webhook data from WordPress.
    • Example controller code:
      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'}
      
  4. Test the Integration:
    • Submit a test form in Elementor.
    • Check if the lead appears in Odoo under CRM > Leads.

2. Use Odoo’s WordPress Connector

If you want a more comprehensive integration with WordPress:

  1. Search for third-party modules like WordPress-Odoo Connectors in the Odoo Apps Store. These connectors often include features for lead synchronization.
  2. Install and configure the module in both Odoo and WordPress.

3. Use Odoo Form Builder (Alternative to Elementor Forms)

If you prefer an Odoo-native solution:

  1. Use the Website module in Odoo to build forms directly on your Odoo site.
  2. Embed the form in your WordPress site using an iframe or link back to your Odoo website.
  3. Submitted forms will directly populate Odoo's CRM as leads.

4. Third-Party Plugins

If you’re already using Elementor or WordPress plugins:

  • Look for WordPress plugins specifically designed for Odoo integration (available in the WordPress plugin repository).
  • Examples: WP-Odoo Bridge, Odoo WooCommerce Connector.

5. Automate with Odoo Studio

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.

Summary

While Zapier is a straightforward solution, Odoo provides native methods for collecting leads via:

  • Webhooks: Direct integration with WordPress forms like Elementor.
  • Third-Party Modules: Pre-built WordPress-Odoo connectors.
  • Odoo Form Builder: Odoo-native forms for seamless CRM integration.

Let me know if you need further guidance with implementation or customization!

0
Avatar
Opusti
Avatar
joel.mugisho@iuea.ac.ug
Best Answer

I also face the challenge, Please help guys 

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Intégration spotify
integration odoo
Avatar
Avatar
1
avg. 25
10429
How to Develop Odoo with Continuous Integration ? Solved
integration odoo
Avatar
Avatar
1
sep. 25
6649
Is there a way to fetch order reference when a customer purchase a module published on Odoo app store?
apps odoo
Avatar
Avatar
1
jan. 23
2776
I bought a module from Odoo apps platform but I didn't get a link
apps odoo
Avatar
0
nov. 21
2438
How do I integrate Odoo to Salesforce? Solved
integration odoo
Avatar
Avatar
Avatar
3
avg. 19
9845
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now