I want to add icons to the shipping options in Woocommerce Cart and Checkout.
For example in the \"local pickup\" option I want to show a little store icon beside th
Use the woocommerce_cart_shipping_method_full_label
filter.
add_filter( 'woocommerce_cart_shipping_method_full_label', 'filter_woocommerce_cart_shipping_method_full_label', 10, 2 );
function filter_woocommerce_cart_shipping_method_full_label( $label, $method ) {
// Use the condition here with $method to apply the image to a specific method.
if( $method->method_id == "flat_rate" ) {
$label = $label."Your Icon Image";
} else if( $method->method_id == "local_pickup" ) {
$label = $label."Your Icon Image";
}
return $label;
}