Allows removing Jetpack suggestions from WooCommerce Admin when false. In this instance it is removed from the list of extensions suggested in the Onboarding Profiler. This list is first retrieved from the WooCommerce.com API, then if a plugin with the 'jetpack' slug is found, it is removed.
true
Sortie :
// Modifier la valeur avec le filtre 'woocommerce_suggest_jetpack'
add_filter('woocommerce_suggest_jetpack', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(true) {
// Modifier la valeur
return true;
}
Chargement des actualités...