woocommerce_shipping_method_title

woocommerce_shipping_method_title

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_shipping_method_title') is found 2 times:

  • /includes/abstracts/abstract-wc-shipping-method.php line 227
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    * @since 2.6.0
     * @return string
     */
    public function get_method_title() {
        return apply_filters( 'woocommerce_shipping_method_title', $this->method_title, $this );
    }
     
    /**
     * Return the shipping method description.
     *
     * @since 2.6.0
  • /includes/abstracts/abstract-wc-shipping-method.php line 246
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    *
     * @return string
     */
    public function get_title() {
        return apply_filters( 'woocommerce_shipping_method_title', $this->title, $this->id );
    }
     
    /**
     * Return calculated rates for a package.
     *
     * @since 2.6.0