Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-order-attribution-feature.txt

5 lines
208 B
Text

// Check if WooCommerce plugin is active and installed
if (is_plugin_active('woocommerce/woocommerce.php')) {
// Set the option
update_option('woocommerce_feature_order_attribution_enabled', 'no');
}