Code-Snippets-Functions/Execute a function on a child site/WooCommerce/fix-the-fetch-patterns-action.txt

8 lines
379 B
Text

add_action('init', function() {
if ( current_user_can('manage_woocommerce') ) {
update_option('woocommerce_blocks_did_fetch_patterns', true);
update_option('woocommerce_blocks_patterns_fetched', true);
update_option('woocommerce_blocks_show_pattern_banner', false);
update_option('woocommerce_admin_created_default_patterns', true);
}
});