plugin updates

This commit is contained in:
Tony Volpe
2024-02-21 16:19:46 +00:00
parent c72f206574
commit 21d4c85c00
1214 changed files with 102269 additions and 179257 deletions

View File

@@ -2460,7 +2460,7 @@ function wc_update_700_remove_download_log_fk() {
* Remove the transient data for recommended marketing extensions.
*/
function wc_update_700_remove_recommended_marketing_plugins_transient() {
delete_transient( MarketingSpecs::RECOMMENDED_PLUGINS_TRANSIENT );
delete_transient( 'wc_marketing_recommended_plugins' );
}
/**
@@ -2639,3 +2639,13 @@ LIMIT 250
return ! empty( $has_pending );
}
/**
* Remove the transient data for recommended marketing extensions.
*
* This is removed because it is not used anymore.
* It is replaced by `woocommerce_admin_marketing_recommendations_specs` transient that is created by `MarketingRecommendationsDataSourcePoller`.
*/
function wc_update_860_remove_recommended_marketing_plugins_transient() {
delete_transient( 'wc_marketing_recommended_plugins' );
}