wc-shipping-providers
Installation
SKILL.md
WooCommerce fulfillment shipping providers
This is the provider registry for WooCommerce's Order Fulfillments feature. It is not a shipping-rate method and does not implement label purchasing or carrier API calls.
Feature status
In WooCommerce 11.0.0, feature ID fulfillments is disabled by default and its feature UI is hidden. Classes existing on disk does not mean fulfillment UI/routes are active.
use Automattic\WooCommerce\Utilities\FeaturesUtil;
if ( ! FeaturesUtil::feature_is_enabled( 'fulfillments' ) ) {
return;
}
Do not force-enable the feature from an extension. Guard integration and provide graceful no-op behavior when it is off or the provider base class is unavailable.