Choose Products
Showing 2929–2976 of 3011 resultsSorted by popularity
/** * Include all your custom code here */ #-- Remove Split Shipping | Dokan Lite --# function dokan_lite_remove_split_shipping() { if ( function_exists( 'dokan_remove_hook_for_anonymous_class' ) ) { dokan_remove_hook_for_anonymous_class( 'woocommerce_cart_shipping_packages', 'WeDevs\Dokan\Shipping\Hooks', 'split_shipping_packages', 10 ); dokan_remove_hook_for_anonymous_class( 'woocommerce_checkout_create_order_shipping_item', 'WeDevs\Dokan\Shipping\Hooks', 'add_shipping_pack_meta', 10 ); dokan_remove_hook_for_anonymous_class( 'woocommerce_shipping_package_name', 'WeDevs\Dokan\Shipping\Hooks', 'change_shipping_pack_name', 10 ); } } add_action( 'init', 'dokan_lite_remove_split_shipping' );
Showing 2929–2976 of 3011 resultsSorted by popularity