I have downloaded Wordpress site integration module from this link: https://www.odoo.com/apps/trunk/openerp_wordpress/
how to install it?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I have downloaded Wordpress site integration module from this link: https://www.odoo.com/apps/trunk/openerp_wordpress/
how to install it?
Hi,
I realise this is an old thread, there now is a plugin that will allow you to put your Odoo forms on any wordpress/joomla!/any website seamlessly.
Simply go to:
https://www.odoo.com/apps/modules/13.0/pr1_iframe_forms/
Cheers
Hey Ibrar Ahmad,
For Integrating odoo with wordpress following some link :-
1) https://www.odoo.com/forum/help-1/question/localhost-wordpress-woocommerce-integration-61471
Some Odoo apps Module link :-
1)https://www.odoo.com/apps/modules/9.0/artarad_wordpress_conector/ 2)https://www.odoo.com/apps/modules/10.0/odoo_woo_connect/
Hope this will help you.
Thanks!
Integrating Odoo with WordPress is commonly done for purposes such as synchronizing data (e.g., products, customers, or orders) or embedding Odoo functionality (e.g., forms) into a WordPress site. Here's a step-by-step guide to help you integrate Odoo with WordPress:
Decide what you aim to achieve with the integration:
Steps to Use a WooCommerce Connector:
Steps:
Here’s how to integrate using Odoo’s REST API for fetching data dynamically.
1. Fetch Data from Odoo in WordPress:
$url = 'https://your-odoo-instance.com'; $db = 'your-database-name'; $username = 'your-email@example.com'; $password = 'your-password'; // Authentication $common = ripcord::client("$url/xmlrpc/2/common"); $uid = $common->authenticate($db, $username, $password, array()); // Fetch Data $models = ripcord::client("$url/xmlrpc/2/object"); $products = $models->execute_kw($db, $uid, $password, 'product.template', 'search_read', array(array(array('sale_ok', '=', true))), array('fields'=>array('name', 'list_price')) ); // Display Products foreach ($products as $product) { echo $product['name'] . ': $' . $product['list_price'] . '<br>'; }
2. Push Data from WordPress to Odoo:
$lead_data = array( 'name' => 'New Lead from WordPress', 'email_from' => 'customer@example.com', 'description' => 'Lead created via WordPress form.' ); $lead_id = $models->execute_kw($db, $uid, $password, 'crm.lead', 'create', array($lead_data) ); echo "Lead created with ID: $lead_id";
The integration method you choose depends on your use case:
Let me know if you need help with specific steps or additional guidance!
Hello,
You can use this module
http://bit.ly/2gF4ISA.
This may help you.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
we are looking for odoo outsource service provider in PK