Hi Valerio,
you can prevent scheduling without a hack via
add_filter ( 'schedule_event', function ( $event ) {
if ( $event -> hook == 'delete_version_transients' ) return FALSE;
return $event;
}, '10', 1 );
Using this filter only while importing.
Ross, thats a WooCommerce issue using native functions of them while importing a huge amount of products programmatically. :-/
-
This reply was modified 6 years ago by krizkroz.
-
This reply was modified 6 years ago by krizkroz.