복붙노트

[WORDPRESS] Woocommerce 카트 및 체크 아웃의 운송 옵션에 사용자 정의 아이콘을 추가

WORDPRESS

Woocommerce 카트 및 체크 아웃의 운송 옵션에 사용자 정의 아이콘을 추가

해결법


  1. 1.woocommerce_cart_shipping_method_full_label 필터를 사용합니다.

    woocommerce_cart_shipping_method_full_label 필터를 사용합니다.

    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; 
    }
    
  2. from https://stackoverflow.com/questions/58225336/adding-custom-icons-to-the-shipping-options-in-woocommerce-cart-and-checkout by cc-by-sa and MIT license