Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Collect leads from elementor or any other Wordpress plugin

Odebírat

Get notified when there's activity on this post

This question has been flagged
appsintegrationodoo
3 Odpovědi
5405 Zobrazení
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
Zrušit
Jhon Mu

I am also facing the same issue.

Avatar
Ronny van Der Borght
Nejlepší odpověď

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
Zrušit
Avatar
Gracious Joseph
Nejlepší odpověď

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
Zrušit
Avatar
joel.mugisho@iuea.ac.ug
Nejlepší odpověď

I also face the challenge, Please help guys 

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Intégration spotify
integration odoo
Avatar
Avatar
1
srp 25
10405
How to Develop Odoo with Continuous Integration ? Vyřešeno
integration odoo
Avatar
Avatar
1
zář 25
6606
Is there a way to fetch order reference when a customer purchase a module published on Odoo app store?
apps odoo
Avatar
Avatar
1
led 23
2736
I bought a module from Odoo apps platform but I didn't get a link
apps odoo
Avatar
0
lis 21
2422
How do I integrate Odoo to Salesforce? Vyřešeno
integration odoo
Avatar
Avatar
Avatar
3
srp 19
9825
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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