woocommerce / woocommerce-product-tables-feature-plugin

Implements new data-stores and moves product data into custom tables, with a new, normalised data structure.
GNU General Public License v3.0
192 stars 32 forks source link

wc_get_products only getting products in custom table? #145

Closed erikdemarco closed 5 years ago

erikdemarco commented 5 years ago
$args = array(
'limit' => 9999,
);
$results = wc_get_products( $args );

above code will only return products that created when 'woocommerce-product-tables' activated. is that normal? isn't it supposed to fetch all products using old table as well?

I'm using the most up to date woocommerce version.

claudiosanches commented 5 years ago

This plugin will make wc_get_products() only get data from the new table, so it's normal, also in order for this plugin fully work, will require migrate all data. We currently are working on improving the data migration.