Add html to shipping rate label on cart and checkout pages in WooCommerce

Add html to shipping rate label on cart and checkout pages in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_cart_shipping_method_full_label', 'wc_shipping_method_suffix' );
 
function wc_shipping_method_suffix( $label ) {
   return $label . ' (<a href="">shipping FAQ</a>)';
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.