I have a WooCommerce store and it as usually saves Order Data in WordPress database. I have created a separate database order_master
in which I want to store the WooCommerce Order.
For this, I have defined a separate database in wp-config
as:
$host = 'localhost';
$user = 'root';
$pass = '';
$db = 'order_master';
So, Can an external database could be used to save WooCommerce Order details? If yes, Then I would really appreciate any help regarding this.