Skip to content

Instantly share code, notes, and snippets.

@Luc45
Last active December 13, 2023 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Luc45/06f1ab20d8fb4c0ac8f3878f0138c5ad to your computer and use it in GitHub Desktop.
Save Luc45/06f1ab20d8fb4c0ac8f3878f0138c5ad to your computer and use it in GitHub Desktop.
WooCommerce Enable COT - Q4 2023
<?php
/**
* Plugin Name: WooCommerce Enable COT
* Description: Adds the code to enable Custom Order Tables.
* Version: 0.0.4
*/
function wc_enable_cot() {
/** @var \Automattic\WooCommerce\Internal\Features\FeaturesController $features_controller */
$features_controller = wc_get_container()->get( 'Automattic\WooCommerce\Internal\Features\FeaturesController' );
// Early bail: HPOS is already enabled.
if ( $features_controller->feature_is_enabled( 'custom_order_tables' ) ) {
return;
}
/** @var \Automattic\WooCommerce\Internal\DataStores\Orders\DataSynchronizer $synchronizer */
$synchronizer = wc_get_container()->get( 'Automattic\WooCommerce\Internal\DataStores\Orders\DataSynchronizer' );
$pending_sync = $synchronizer->get_current_orders_pending_sync_count();
if ( $pending_sync ) {
$synchronizer->create_database_tables();
$synchronizer->process_batch( $synchronizer->get_next_batch_to_process( $pending_sync ) );
}
$features_controller->change_feature_enable( 'custom_order_tables', true );
}
add_action( 'init', 'wc_enable_cot', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment