Skip to main content

WP: 1. Merge Woocommerce Orders and Customers

Merge Woocommerce Orders and Customers

I personally faced this problem and able to turn it around by a lot of efforts and time investment but you can go smoothly on it, So take a deep breath and relax you are at right place where you will got the solution for topic "Merge Woocommerce Orders and Customers Effectively For Free" so let's jump into that quickly.

We strongly Recommend to take the backup of your website before actually following the steps below.

Steps are as follows we are taking example as Site A to export and Site B to import :- 

Export the Customers First From Site A as follows(NO PLUGIN REQUIRED):- 
  1. Go to the database of site A and export two tables named(wp_users and wp_usermeta)
Import the Customers Into Site B as follows(NO PLUGIN REQUIRED):- 
  1. Go to the database of site B and import the tables exported from site A.
  2. That's all you are done the all the users are imported successfully.
And as suggested you don't need to invest any amount on some sort of plugins go ahead and merge the orders by following steps:- 
  1. Install the free plugin by webtoffe on both of the sites.
  2. https://wordpress.org/plugins/order-import-export-for-woocommerce/
  3. Follow the steps as per the plugin guidelines and you are done, Cheers.

Comments

Popular posts from this blog

React: Remember me functionality with React

Want to know how can you easily integrate Remember me on your website just follow the steps below and I am sure you will find this pretty easy. There is no rocket science to crack it you just need basic code knowledge only. Step 1: Add the react-cookie in your project    npm install react-cookie Step2: Add the following code in index.js import { CookiesProvider } from "react-cookie"; ReactDOM.render(      <CookiesProvider>           <App />      </CookiesProvider>,      document.getElementById('root') ); Step3: Add the following code in your component    import React, { useState } from 'react'; import { useCookies } from 'react-cookie'; const App = () => { const [name, setName] = useState(''); const [pwd, setPwd] = useState(''); const [cookies, setCookie] = useCookies(['user']); const handle = () => {      setCooki...

React: Print Specific Section of the page with - ReactToPrint

  Want to know how can you easily print specific section of your website just follow the steps below and I am sure you will find this pretty easy. There is no rocket science to crack it you just need basic code knowledge only. Step 1: Add the ReactToPrint in your project    npm install --save react-to-print Step2: Add the following code in your component   import React, { useRef } from 'react'; import ReactToPrint from 'react-to-print'; const Example = () => {      const componentRef = useRef();      return (           <div>                <ReactToPrint                     trigger={() => <button>Print this out!</button>}                     content={() => componentRef}    ...

JS: Cheatsheet

   Datatypes Difference Between Var, Let and Const Functions and its types Asynchronous operations in JS