Code-Snippets-Functions/Execute a function on a child site/WooCommerce/add-hyperlink-shipping-method-label.txt

5 lines
206 B
Text

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